Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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/*", "/Justfile", "/Vagrantfile", "/screenshots.png"]
  16. [[bin]]
  17. name = "exa"
  18. [dependencies]
  19. ansi_term = "0.12"
  20. datetime = "0.5"
  21. glob = "0.3"
  22. lazy_static = "1.3"
  23. libc = "0.2"
  24. locale = "0.2"
  25. log = "0.4"
  26. natord = "1.0"
  27. num_cpus = "1.10"
  28. number_prefix = "0.4"
  29. scoped_threadpool = "0.1"
  30. term_grid = "0.1"
  31. term_size = "0.3"
  32. unicode-width = "0.1"
  33. zoneinfo_compiled = "0.5"
  34. [target.'cfg(unix)'.dependencies]
  35. users = "0.11"
  36. [dependencies.git2]
  37. version = "0.13"
  38. optional = true
  39. default-features = false
  40. [build-dependencies]
  41. datetime = "0.5"
  42. [features]
  43. default = [ "git" ]
  44. git = [ "git2" ]
  45. vendored-openssl = ["git2/vendored-openssl"]
  46. [profile.release]
  47. opt-level = 3
  48. debug = false
  49. lto = true
  50. panic = "abort"
  51. [package.metadata.deb]
  52. license-file = [ "LICENCE" ]
  53. depends = "$auto"
  54. extended-description = """
  55. exa is a replacement for ls written in Rust.
  56. """
  57. section = "utils"
  58. priority = "optional"
  59. assets = [
  60. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  61. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  62. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  63. ]