Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [package]
  2. name = "exa"
  3. version = "0.7.0"
  4. authors = [ "ogham@bsago.me" ]
  5. description = "A modern replacement for ls"
  6. homepage = "https://the.exa.website/"
  7. repository = "https://github.com/ogham/exa"
  8. documentation = "https://github.com/ogham/exa"
  9. readme = "README.md"
  10. categories = ["command-line-utilities"]
  11. keywords = ["ls", "files", "command-line"]
  12. license = "MIT"
  13. [[bin]]
  14. name = "exa"
  15. path = "src/bin/main.rs"
  16. doc = false
  17. [lib]
  18. name = "exa"
  19. path = "src/exa.rs"
  20. [dependencies]
  21. ansi_term = "0.8.0"
  22. datetime = "0.4.3"
  23. env_logger = "0.3"
  24. getopts = "0.2.14"
  25. glob = "0.2"
  26. lazy_static = "0.2"
  27. libc = "0.2.9"
  28. locale = "0.2.1"
  29. log = "0.3"
  30. natord = "1.0.7"
  31. num_cpus = "1.3.0"
  32. number_prefix = "0.2.3"
  33. scoped_threadpool = "0.1.*"
  34. term_grid = "0.1.6"
  35. term_size = "0.3.0"
  36. unicode-width = "0.1.4"
  37. users = "0.5.2"
  38. [features]
  39. default = [ "git" ]
  40. git = [ "git2" ]
  41. [profile.release]
  42. opt-level = 3
  43. debug = false
  44. lto = true
  45. panic = "abort"
  46. [dependencies.git2]
  47. version = "0.6.4"
  48. optional = true
  49. default-features = false
  50. [dependencies.zoneinfo_compiled]
  51. git = "https://github.com/rust-datetime/zoneinfo-compiled.git"