1
0

Cargo.toml 1.5 KB

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