Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. glob = "0.3"
  21. lazy_static = "1.3"
  22. libc = "0.2"
  23. locale = "0.2"
  24. log = "0.4"
  25. natord = "1.0"
  26. num_cpus = "1.10"
  27. number_prefix = "0.4"
  28. scoped_threadpool = "0.1"
  29. term_grid = "0.1"
  30. term_size = "0.3"
  31. unicode-width = "0.1"
  32. users = "0.11"
  33. zoneinfo_compiled = "0.5.1"
  34. [dependencies.datetime]
  35. version = "0.5.2"
  36. default-features = false
  37. features = ["format"]
  38. [dependencies.git2]
  39. version = "0.13"
  40. optional = true
  41. default-features = false
  42. [build-dependencies.datetime]
  43. version = "0.5.2"
  44. default-features = false
  45. [features]
  46. default = [ "git" ]
  47. git = [ "git2" ]
  48. vendored-openssl = ["git2/vendored-openssl"]
  49. # make dev builds faster by excluding debug symbols
  50. [profile.dev]
  51. debug = false
  52. # use LTO for smaller binaries (that take longer to build)
  53. [profile.release]
  54. lto = true
  55. [package.metadata.deb]
  56. license-file = [ "LICENCE" ]
  57. depends = "$auto"
  58. extended-description = """
  59. exa is a replacement for ls written in Rust.
  60. """
  61. section = "utils"
  62. priority = "optional"
  63. assets = [
  64. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  65. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  66. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  67. ]