1
0

Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. getopts = "0.2.14"
  24. glob = "0.2"
  25. lazy_static = "0.2"
  26. libc = "0.2.9"
  27. locale = "0.2.1"
  28. natord = "1.0.7"
  29. num_cpus = "1.3.0"
  30. number_prefix = "0.2.3"
  31. scoped_threadpool = "0.1.*"
  32. term_grid = "0.1.2"
  33. unicode-width = "0.1.4"
  34. users = "0.5.2"
  35. term_size = "0.3.0"
  36. [features]
  37. default = [ "git" ]
  38. git = [ "git2" ]
  39. [profile.release]
  40. opt-level = 3
  41. debug = false
  42. lto = true
  43. panic = "abort"
  44. [dependencies.git2]
  45. version = "0.6.4"
  46. optional = true
  47. default-features = false
  48. [dependencies.zoneinfo_compiled]
  49. git = "https://github.com/rust-datetime/zoneinfo-compiled.git"