exa/Cargo.toml

45 lines
707 B
TOML
Raw Normal View History

2014-06-28 16:24:20 +00:00
[package]
name = "exa"
version = "0.5.0"
2014-06-28 16:24:20 +00:00
authors = [ "ogham@bsago.me" ]
[[bin]]
name = "exa"
path = "src/bin/main.rs"
[lib]
name = "exa"
path = "src/exa.rs"
2015-01-12 00:20:28 +00:00
[dependencies]
ansi_term = "0.8.0"
2016-03-13 15:12:33 +00:00
datetime = "0.4.3"
2015-11-04 17:01:05 +00:00
getopts = "0.2.14"
glob = "0.2"
lazy_static = "0.2.5"
2016-03-31 19:48:44 +00:00
libc = "0.2.9"
2016-03-13 15:12:33 +00:00
locale = "0.2.1"
natord = "1.0.7"
num_cpus = "1.3.0"
number_prefix = "0.2.3"
scoped_threadpool = "0.1.*"
2015-11-04 17:01:05 +00:00
term_grid = "0.1.2"
unicode-width = "0.1.3"
users = "0.5.1"
[features]
2015-01-27 15:59:22 +00:00
default = [ "git" ]
git = [ "git2" ]
[profile.release]
opt-level = 3
debug = false
lto = true
[dependencies.git2]
version = "0.6.4"
optional = true
2016-02-10 19:02:20 +00:00
[dependencies.zoneinfo_compiled]
2016-03-13 15:12:33 +00:00
git = "https://github.com/rust-datetime/zoneinfo-compiled.git"