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/*", "/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. zoneinfo_compiled = "0.5.1"
  33. [target.'cfg(unix)'.dependencies]
  34. users = "0.11"
  35. [dependencies.datetime]
  36. version = "0.5.2"
  37. default-features = false
  38. features = ["format"]
  39. [dependencies.git2]
  40. version = "0.13"
  41. optional = true
  42. default-features = false
  43. [build-dependencies.datetime]
  44. version = "0.5.2"
  45. default-features = false
  46. [features]
  47. default = [ "git" ]
  48. git = [ "git2" ]
  49. vendored-openssl = ["git2/vendored-openssl"]
  50. # make dev builds faster by excluding debug symbols
  51. [profile.dev]
  52. debug = false
  53. # use LTO for smaller binaries (that take longer to build)
  54. [profile.release]
  55. lto = true
  56. [package.metadata.deb]
  57. license-file = [ "LICENCE" ]
  58. depends = "$auto"
  59. extended-description = """
  60. exa is a replacement for ls written in Rust.
  61. """
  62. section = "utils"
  63. priority = "optional"
  64. assets = [
  65. [ "target/release/exa", "/usr/bin/exa", "0755" ],
  66. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  67. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  68. ]