exa/Cargo.toml

65 lines
1.1 KiB
TOML
Raw Normal View History

2014-06-28 16:24:20 +00:00
[package]
name = "exa"
version = "0.9.0-pre"
2014-06-28 16:24:20 +00:00
authors = [ "ogham@bsago.me" ]
build = "build.rs"
2014-06-28 16:24:20 +00:00
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"
2018-11-14 13:27:05 +00:00
exclude = ["/devtools/*", "/Makefile", "/Vagrantfile", "/screenshots.png"]
2014-06-28 16:24:20 +00:00
[[bin]]
name = "exa"
path = "src/bin/main.rs"
doc = false
[lib]
name = "exa"
path = "src/exa.rs"
2015-01-12 00:20:28 +00:00
[dependencies]
ansi_term = "0.11"
datetime = "0.4.7"
env_logger = "0.6"
glob = "0.2"
lazy_static = "1"
2016-03-31 19:48:44 +00:00
libc = "0.2.9"
2016-03-13 15:12:33 +00:00
locale = "0.2.1"
log = "0.4"
natord = "1.0.7"
num_cpus = "1.3.0"
number_prefix = "0.2.3"
scoped_threadpool = "0.1.*"
term_grid = "0.1.6"
term_size = "0.3.0"
2017-05-17 21:37:20 +00:00
unicode-width = "0.1.4"
users = "0.8"
zoneinfo_compiled = "0.4.7"
[build-dependencies]
datetime = "0.4.7"
[features]
2015-01-27 15:59:22 +00:00
default = [ "git" ]
git = [ "git2" ]
[profile.release]
opt-level = 3
debug = false
lto = true
panic = "abort"
[dependencies.git2]
version = "0.7"
optional = true
default-features = false