Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. [package]
  2. name = "exa"
  3. version = "0.9.0"
  4. authors = [ "Benjamin Sago <ogham@bsago.me>" ]
  5. build = "build.rs"
  6. edition = "2018"
  7. description = "A modern replacement for ls"
  8. homepage = "https://the.exa.website/"
  9. repository = "https://github.com/ogham/exa"
  10. documentation = "https://github.com/ogham/exa"
  11. readme = "README.md"
  12. categories = ["command-line-utilities"]
  13. keywords = ["ls", "files", "command-line"]
  14. license = "MIT"
  15. exclude = ["/devtools/*", "/Makefile", "/Vagrantfile", "/screenshots.png"]
  16. [[bin]]
  17. name = "exa"
  18. path = "src/bin/main.rs"
  19. doc = false
  20. [lib]
  21. name = "exa"
  22. path = "src/exa.rs"
  23. [dependencies]
  24. ansi_term = "0.12.0"
  25. datetime = "0.5"
  26. env_logger = "0.6.1"
  27. glob = "0.3.0"
  28. lazy_static = "1.3.0"
  29. libc = "0.2.51"
  30. locale = "0.2.2"
  31. log = "0.4.6"
  32. natord = "1.0.9"
  33. num_cpus = "1.10.0"
  34. number_prefix = "0.3.0"
  35. scoped_threadpool = "0.1.9"
  36. term_grid = "0.1.7"
  37. term_size = "0.3.1"
  38. unicode-width = "0.1.5"
  39. users = "0.10"
  40. zoneinfo_compiled = "0.5"
  41. [dependencies.git2]
  42. version = "0.9.1"
  43. optional = true
  44. default-features = false
  45. [build-dependencies]
  46. datetime = "0.5"
  47. [features]
  48. default = [ "git" ]
  49. git = [ "git2" ]
  50. vendored-openssl = ["git2/vendored-openssl"]
  51. [profile.release]
  52. opt-level = 3
  53. debug = false
  54. lto = true
  55. panic = "abort"
  56. [package.metadata.deb]
  57. license-file = [ "LICENCE" ]
  58. depends = "$auto"
  59. extended-description = """
  60. exa is a replacement for ls written in Rust.
  61. """
  62. section = "utils"
  63. priority = "optional"
  64. assets = [
  65. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  66. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  67. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  68. ]