Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.4.7"
  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. zoneinfo_compiled = "0.4.8"
  40. os_str_bytes = "2.2.0"
  41. [target.'cfg(unix)'.dependencies]
  42. users = "0.9.1"
  43. [dependencies.git2]
  44. version = "0.9.1"
  45. optional = true
  46. default-features = false
  47. [build-dependencies]
  48. datetime = "0.4.7"
  49. [features]
  50. default = [ "git" ]
  51. git = [ "git2" ]
  52. vendored-openssl = ["git2/vendored-openssl"]
  53. [profile.release]
  54. opt-level = 3
  55. debug = false
  56. lto = true
  57. panic = "abort"
  58. [package.metadata.deb]
  59. license-file = [ "LICENCE" ]
  60. depends = "$auto"
  61. extended-description = """
  62. exa is a replacement for ls written in Rust.
  63. """
  64. section = "utils"
  65. priority = "optional"
  66. assets = [
  67. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  68. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  69. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  70. ]