Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. [package]
  2. name = "exa"
  3. version = "0.9.0-pre"
  4. authors = [ "ogham@bsago.me" ]
  5. build = "build.rs"
  6. description = "A modern replacement for ls"
  7. homepage = "https://the.exa.website/"
  8. repository = "https://github.com/ogham/exa"
  9. documentation = "https://github.com/ogham/exa"
  10. readme = "README.md"
  11. categories = ["command-line-utilities"]
  12. keywords = ["ls", "files", "command-line"]
  13. license = "MIT"
  14. exclude = ["/devtools/*", "/Makefile", "/Vagrantfile", "/screenshots.png"]
  15. [[bin]]
  16. name = "exa"
  17. path = "src/bin/main.rs"
  18. doc = false
  19. [lib]
  20. name = "exa"
  21. path = "src/exa.rs"
  22. [dependencies]
  23. ansi_term = "0.12.0"
  24. datetime = "0.4.7"
  25. env_logger = "0.6.1"
  26. glob = "0.3.0"
  27. lazy_static = "1.3.0"
  28. libc = "0.2.51"
  29. locale = "0.2.2"
  30. log = "0.4.6"
  31. natord = "1.0.9"
  32. num_cpus = "1.10.0"
  33. number_prefix = "0.3.0"
  34. scoped_threadpool = "0.1.9"
  35. term_grid = "0.1.7"
  36. term_size = "0.3.1"
  37. unicode-width = "0.1.5"
  38. users = "0.9.1"
  39. zoneinfo_compiled = "0.4.8"
  40. [dependencies.git2]
  41. version = "0.8.0"
  42. optional = true
  43. default-features = false
  44. [build-dependencies]
  45. datetime = "0.4.7"
  46. [features]
  47. default = [ "git" ]
  48. git = [ "git2" ]
  49. [profile.release]
  50. opt-level = 3
  51. debug = false
  52. lto = true
  53. panic = "abort"