Cargo.toml 726 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "exa"
  3. version = "0.6.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. libc = "0.2.9"
  17. locale = "0.2.1"
  18. natord = "1.0.7"
  19. num_cpus = "1.3.0"
  20. number_prefix = "0.2.3"
  21. scoped_threadpool = "0.1.*"
  22. term_grid = "0.1.2"
  23. unicode-width = "0.1.4"
  24. users = "0.5.1"
  25. [features]
  26. default = [ "git" ]
  27. git = [ "git2" ]
  28. [profile.release]
  29. opt-level = 3
  30. debug = false
  31. lto = true
  32. panic = "abort"
  33. [dependencies.git2]
  34. version = "0.6.4"
  35. optional = true
  36. default-features = false
  37. [dependencies.zoneinfo_compiled]
  38. git = "https://github.com/rust-datetime/zoneinfo-compiled.git"