Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. homepage = "https://the.exa.website/"
  9. license = "MIT"
  10. repository = "https://github.com/ogham/exa"
  11. version = "0.11.0-pre"
  12. [[bin]]
  13. name = "exa"
  14. [dependencies]
  15. ansi_term = "0.12"
  16. glob = "0.3"
  17. lazy_static = "1.3"
  18. libc = "0.2"
  19. locale = "0.2"
  20. log = "0.4"
  21. natord = "1.0"
  22. num_cpus = "1.10"
  23. number_prefix = "0.4"
  24. scoped_threadpool = "0.1"
  25. term_grid = "0.1"
  26. term_size = "0.3"
  27. unicode-width = "0.1"
  28. zoneinfo_compiled = "0.5.1"
  29. [target.'cfg(unix)'.dependencies]
  30. users = "0.11"
  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" ]
  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. [ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
  63. [ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
  64. ]