Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. users = "0.11"
  34. zoneinfo_compiled = "0.5"
  35. [dependencies.git2]
  36. version = "0.13"
  37. optional = true
  38. default-features = false
  39. [build-dependencies]
  40. datetime = "0.5"
  41. [features]
  42. default = [ "git" ]
  43. git = [ "git2" ]
  44. vendored-openssl = ["git2/vendored-openssl"]
  45. [profile.release]
  46. opt-level = 3
  47. debug = false
  48. lto = true
  49. panic = "abort"
  50. [package.metadata.deb]
  51. license-file = [ "LICENCE" ]
  52. depends = "$auto"
  53. extended-description = """
  54. exa is a replacement for ls written in Rust.
  55. """
  56. section = "utils"
  57. priority = "optional"
  58. assets = [
  59. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  60. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  61. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  62. ]