2014-06-28 16:24:20 +00:00
|
|
|
[package]
|
|
|
|
name = "exa"
|
2017-10-08 19:09:46 +00:00
|
|
|
version = "0.9.0-pre"
|
2014-06-28 16:24:20 +00:00
|
|
|
authors = [ "ogham@bsago.me" ]
|
2017-10-08 19:09:46 +00:00
|
|
|
build = "build.rs"
|
2014-06-28 16:24:20 +00:00
|
|
|
|
2017-07-07 10:55:55 +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"]
|
2017-07-07 10:55:55 +00:00
|
|
|
|
2017-10-08 19:09:46 +00:00
|
|
|
|
2014-06-28 16:24:20 +00:00
|
|
|
[[bin]]
|
2014-07-01 18:00:36 +00:00
|
|
|
name = "exa"
|
2016-04-19 06:48:41 +00:00
|
|
|
path = "src/bin/main.rs"
|
2017-07-22 17:06:05 +00:00
|
|
|
doc = false
|
2016-04-19 06:48:41 +00:00
|
|
|
|
2017-10-08 19:09:46 +00:00
|
|
|
|
2016-04-19 06:48:41 +00:00
|
|
|
[lib]
|
|
|
|
name = "exa"
|
|
|
|
path = "src/exa.rs"
|
2014-07-01 18:00:36 +00:00
|
|
|
|
2015-01-12 00:20:28 +00:00
|
|
|
[dependencies]
|
2019-04-17 05:53:42 +00:00
|
|
|
ansi_term = "0.11.0"
|
2017-10-08 20:38:08 +00:00
|
|
|
datetime = "0.4.7"
|
2019-04-17 05:53:42 +00:00
|
|
|
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"
|
2017-10-08 20:38:08 +00:00
|
|
|
zoneinfo_compiled = "0.4.7"
|
2015-01-27 15:01:17 +00:00
|
|
|
|
2019-04-17 05:53:42 +00:00
|
|
|
[dependencies.git2]
|
|
|
|
version = "0.8.0"
|
|
|
|
optional = true
|
|
|
|
default-features = false
|
|
|
|
|
2017-10-08 19:09:46 +00:00
|
|
|
[build-dependencies]
|
2017-10-08 20:38:08 +00:00
|
|
|
datetime = "0.4.7"
|
2017-10-08 19:09:46 +00:00
|
|
|
|
2015-01-27 15:01:17 +00:00
|
|
|
[features]
|
2015-01-27 15:59:22 +00:00
|
|
|
default = [ "git" ]
|
2015-01-27 15:01:17 +00:00
|
|
|
git = [ "git2" ]
|
|
|
|
|
2015-02-23 01:05:21 +00:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
lto = true
|
2017-05-07 15:47:19 +00:00
|
|
|
panic = "abort"
|