Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [package]
  2. name = "exa"
  3. version = "0.9.0-pre"
  4. authors = [ "ogham@bsago.me" ]
  5. build = "build.rs"
  6. description = "A modern replacement for ls"
  7. homepage = "https://the.exa.website/"
  8. repository = "https://github.com/ogham/exa"
  9. documentation = "https://github.com/ogham/exa"
  10. readme = "README.md"
  11. categories = ["command-line-utilities"]
  12. keywords = ["ls", "files", "command-line"]
  13. license = "MIT"
  14. [[bin]]
  15. name = "exa"
  16. path = "src/bin/main.rs"
  17. doc = false
  18. [lib]
  19. name = "exa"
  20. path = "src/exa.rs"
  21. [dependencies]
  22. ansi_term = "0.10.2"
  23. datetime = "0.4.7"
  24. env_logger = "0.3"
  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.7"
  39. [build-dependencies]
  40. datetime = "0.4.7"
  41. [features]
  42. default = [ "git" ]
  43. git = [ "git2" ]
  44. [profile.release]
  45. opt-level = 3
  46. debug = false
  47. lto = true
  48. panic = "abort"
  49. [dependencies.git2]
  50. version = "0.6.4"
  51. optional = true
  52. default-features = false