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]
|
2018-05-03 17:34:20 +00:00
|
|
|
ansi_term = "0.11"
|
2017-10-08 20:38:08 +00:00
|
|
|
datetime = "0.4.7"
|
2019-01-17 17:31:32 +00:00
|
|
|
env_logger = "0.6"
|
2016-10-30 14:43:33 +00:00
|
|
|
glob = "0.2"
|
2017-11-30 22:37:56 +00:00
|
|
|
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"
|
2018-05-03 17:34:20 +00:00
|
|
|
log = "0.4"
|
2015-02-04 01:34:21 +00:00
|
|
|
natord = "1.0.7"
|
2017-03-30 19:23:14 +00:00
|
|
|
num_cpus = "1.3.0"
|
2015-02-04 01:34:21 +00:00
|
|
|
number_prefix = "0.2.3"
|
2015-11-15 19:26:58 +00:00
|
|
|
scoped_threadpool = "0.1.*"
|
2017-08-12 19:19:30 +00:00
|
|
|
term_grid = "0.1.6"
|
2017-08-19 09:06:07 +00:00
|
|
|
term_size = "0.3.0"
|
2017-05-17 21:37:20 +00:00
|
|
|
unicode-width = "0.1.4"
|
2018-12-07 00:59:05 +00:00
|
|
|
users = "0.8"
|
2017-10-08 20:38:08 +00:00
|
|
|
zoneinfo_compiled = "0.4.7"
|
2015-01-27 15:01:17 +00:00
|
|
|
|
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"
|
2015-02-23 01:05:21 +00:00
|
|
|
|
2015-01-27 15:01:17 +00:00
|
|
|
[dependencies.git2]
|
2018-03-11 11:25:06 +00:00
|
|
|
version = "0.7"
|
2015-02-09 16:33:27 +00:00
|
|
|
optional = true
|
2017-05-02 20:52:33 +00:00
|
|
|
default-features = false
|