Cargo.toml 1.0 KB

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