Cargo.toml 748 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "exa"
  3. version = "0.5.0"
  4. authors = [ "ogham@bsago.me" ]
  5. [[bin]]
  6. name = "exa"
  7. path = "src/bin/main.rs"
  8. [lib]
  9. name = "exa"
  10. path = "src/exa.rs"
  11. [dependencies]
  12. ansi_term = "0.8.0"
  13. datetime = "0.4.3"
  14. getopts = "0.2.14"
  15. glob = "0.2"
  16. lazy_static = "0.2.5"
  17. libc = "0.2.9"
  18. locale = "0.2.1"
  19. natord = "1.0.7"
  20. num_cpus = "1.3.0"
  21. number_prefix = "0.2.3"
  22. scoped_threadpool = "0.1.*"
  23. term_grid = "0.1.2"
  24. unicode-width = "0.1.4"
  25. users = "0.5.1"
  26. [features]
  27. default = [ "git" ]
  28. git = [ "git2" ]
  29. [profile.release]
  30. opt-level = 3
  31. debug = false
  32. lto = true
  33. panic = "abort"
  34. [dependencies.git2]
  35. version = "0.6.4"
  36. optional = true
  37. default-features = false
  38. [dependencies.zoneinfo_compiled]
  39. git = "https://github.com/rust-datetime/zoneinfo-compiled.git"