Cargo.toml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. [package]
  2. name = "exa"
  3. description = "A modern replacement for ls"
  4. authors = ["Benjamin Sago <ogham@bsago.me>"]
  5. categories = ["command-line-utilities"]
  6. edition = "2018"
  7. exclude = ["/devtools/*", "/Justfile", "/Vagrantfile", "/screenshots.png"]
  8. readme = "README.md"
  9. homepage = "https://the.exa.website/"
  10. license = "MIT"
  11. repository = "https://github.com/ogham/exa"
  12. version = "0.10.1"
  13. [[bin]]
  14. name = "exa"
  15. [dependencies]
  16. ansi_term = "0.12"
  17. glob = "0.3"
  18. lazy_static = "1.3"
  19. libc = "0.2"
  20. locale = "0.2"
  21. log = "0.4"
  22. natord = "1.0"
  23. num_cpus = "1.10"
  24. number_prefix = "0.4"
  25. scoped_threadpool = "0.1"
  26. term_grid = "0.2.0"
  27. terminal_size = "0.1.16"
  28. unicode-width = "0.1"
  29. users = "0.11"
  30. zoneinfo_compiled = "0.5.1"
  31. [dependencies.datetime]
  32. version = "0.5.2"
  33. default-features = false
  34. features = ["format"]
  35. [dependencies.git2]
  36. version = "0.13"
  37. optional = true
  38. default-features = false
  39. [build-dependencies.datetime]
  40. version = "0.5.2"
  41. default-features = false
  42. [features]
  43. default = [ "git" ]
  44. git = [ "git2" ]
  45. vendored-openssl = ["git2/vendored-openssl"]
  46. # make dev builds faster by excluding debug symbols
  47. [profile.dev]
  48. debug = false
  49. # use LTO for smaller binaries (that take longer to build)
  50. [profile.release]
  51. lto = true
  52. [package.metadata.deb]
  53. license-file = [ "LICENCE", "4" ]
  54. depends = "$auto"
  55. extended-description = """
  56. exa is a replacement for ls written in Rust.
  57. """
  58. section = "utils"
  59. priority = "optional"
  60. assets = [
  61. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  62. [ "target/release/../man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  63. [ "target/release/../man/exa_colors.5", "/usr/share/man/man5/exa_colors.5", "0644" ],
  64. [ "completions/bash/exa", "/usr/share/bash-completion/completions/exa", "0644" ],
  65. [ "completions/zsh/_exa", "/usr/share/zsh/site-functions/_exa", "0644" ],
  66. [ "completions/fish/exa.fish", "/usr/share/fish/vendor_completions.d/exa.fish", "0644" ],
  67. ]