| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- [package]
- name = "exa"
- version = "0.9.0-pre"
- authors = [ "ogham@bsago.me" ]
- build = "build.rs"
- description = "A modern replacement for ls"
- homepage = "https://the.exa.website/"
- repository = "https://github.com/ogham/exa"
- documentation = "https://github.com/ogham/exa"
- readme = "README.md"
- categories = ["command-line-utilities"]
- keywords = ["ls", "files", "command-line"]
- license = "MIT"
- exclude = ["/devtools/*", "/Makefile", "/Vagrantfile", "/screenshots.png"]
- [[bin]]
- name = "exa"
- path = "src/bin/main.rs"
- doc = false
- [lib]
- name = "exa"
- path = "src/exa.rs"
- [dependencies]
- ansi_term = "0.12.0"
- datetime = "0.4.7"
- env_logger = "0.6.1"
- glob = "0.3.0"
- lazy_static = "1.3.0"
- libc = "0.2.51"
- locale = "0.2.2"
- log = "0.4.6"
- natord = "1.0.9"
- num_cpus = "1.10.0"
- number_prefix = "0.3.0"
- scoped_threadpool = "0.1.9"
- term_grid = "0.1.7"
- term_size = "0.3.1"
- unicode-width = "0.1.5"
- users = "0.9.1"
- zoneinfo_compiled = "0.4.8"
- [dependencies.git2]
- version = "0.8.0"
- optional = true
- default-features = false
- [build-dependencies]
- datetime = "0.4.7"
- [features]
- default = [ "git" ]
- git = [ "git2" ]
- [profile.release]
- opt-level = 3
- debug = false
- lto = true
- panic = "abort"
|