Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "exa"
  3. version = "0.8.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.5"
  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. zoneinfo_compiled = "0.4.5"
  39. [features]
  40. default = [ "git" ]
  41. git = [ "git2" ]
  42. [profile.release]
  43. opt-level = 3
  44. debug = false
  45. lto = true
  46. panic = "abort"
  47. [dependencies.git2]
  48. version = "0.6.4"
  49. optional = true
  50. default-features = false