Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. exclude = ["/devtools/*", "/Makefile", "/Vagrantfile", "/screenshots.png"]
  15. [[bin]]
  16. name = "exa"
  17. path = "src/bin/main.rs"
  18. doc = false
  19. [lib]
  20. name = "exa"
  21. path = "src/exa.rs"
  22. [dependencies]
  23. ansi_term = "0.11"
  24. datetime = "0.4.7"
  25. env_logger = "0.6"
  26. glob = "0.2"
  27. lazy_static = "1"
  28. libc = "0.2.9"
  29. locale = "0.2.1"
  30. log = "0.4"
  31. natord = "1.0.7"
  32. num_cpus = "1.3.0"
  33. number_prefix = "0.2.3"
  34. scoped_threadpool = "0.1.*"
  35. term_grid = "0.1.6"
  36. term_size = "0.3.0"
  37. unicode-width = "0.1.4"
  38. users = "0.8"
  39. zoneinfo_compiled = "0.4.7"
  40. [build-dependencies]
  41. datetime = "0.4.7"
  42. [features]
  43. default = [ "git" ]
  44. git = [ "git2" ]
  45. [profile.release]
  46. opt-level = 3
  47. debug = false
  48. lto = true
  49. panic = "abort"
  50. [dependencies.git2]
  51. version = "0.7"
  52. optional = true
  53. default-features = false