summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: df81d9017533336a0cbd5d5138b3486a3ea137fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "exa"
version = "0.8.0"
authors = [ "ogham@bsago.me" ]

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"

[[bin]]
name = "exa"
path = "src/bin/main.rs"
doc = false

[lib]
name = "exa"
path = "src/exa.rs"

[dependencies]
ansi_term = "0.8.0"
datetime = "0.4.5"
env_logger = "0.3"
getopts = "0.2.14"
glob = "0.2"
lazy_static = "0.2"
libc = "0.2.9"
locale = "0.2.1"
log = "0.3"
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"
unicode-width = "0.1.4"
users = "0.5.2"
zoneinfo_compiled = "0.4.5"

[features]
default = [ "git" ]
git = [ "git2" ]

[profile.release]
opt-level = 3
debug = false
lto = true
panic = "abort"

[dependencies.git2]
version = "0.6.4"
optional = true
default-features = false