summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e685aebc7050c91d55de50c09c7c9d190e3c0f4c (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
59
60
61
62
63
64
65
[package]
name = "exa"
version = "0.9.0"
authors = [ "Benjamin Sago <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.9.1"
optional = true
default-features = false

[build-dependencies]
datetime = "0.4.7"

[features]
default = [ "git" ]
git = [ "git2" ]
vendored-openssl = ["git2/vendored-openssl"]

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