Cargo.toml 1.6 KB

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