2014-06-28 17:24:20 +01:00
|
|
|
[package]
|
|
|
|
name = "exa"
|
2017-07-07 11:47:47 +01:00
|
|
|
version = "0.7.0"
|
2014-06-28 17:24:20 +01:00
|
|
|
authors = [ "ogham@bsago.me" ]
|
|
|
|
|
2017-07-07 11:55:55 +01: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"
|
|
|
|
|
2014-06-28 17:24:20 +01:00
|
|
|
[[bin]]
|
2014-07-01 19:00:36 +01:00
|
|
|
name = "exa"
|
2016-04-19 07:48:41 +01:00
|
|
|
path = "src/bin/main.rs"
|
2017-07-22 18:06:05 +01:00
|
|
|
doc = false
|
2016-04-19 07:48:41 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "exa"
|
|
|
|
path = "src/exa.rs"
|
2014-07-01 19:00:36 +01:00
|
|
|
|
2015-01-12 01:20:28 +01:00
|
|
|
[dependencies]
|
2017-03-30 12:23:14 -07:00
|
|
|
ansi_term = "0.8.0"
|
2016-03-13 16:12:33 +01:00
|
|
|
datetime = "0.4.3"
|
2015-11-04 17:01:05 +00:00
|
|
|
getopts = "0.2.14"
|
2016-10-30 14:43:33 +00:00
|
|
|
glob = "0.2"
|
2017-06-25 14:51:44 +01:00
|
|
|
lazy_static = "0.2"
|
2016-03-31 20:48:44 +01:00
|
|
|
libc = "0.2.9"
|
2016-03-13 16:12:33 +01:00
|
|
|
locale = "0.2.1"
|
2015-02-04 01:34:21 +00:00
|
|
|
natord = "1.0.7"
|
2017-03-30 12:23:14 -07: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.*"
|
2015-11-04 17:01:05 +00:00
|
|
|
term_grid = "0.1.2"
|
2017-05-17 22:37:20 +01:00
|
|
|
unicode-width = "0.1.4"
|
2017-07-07 11:55:55 +01:00
|
|
|
users = "0.5.2"
|
2017-08-05 08:09:26 +02:00
|
|
|
term_size = "0.3.0"
|
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-22 20:05:21 -05:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
lto = true
|
2017-05-07 16:47:19 +01:00
|
|
|
panic = "abort"
|
2015-02-22 20:05:21 -05:00
|
|
|
|
2015-01-27 15:01:17 +00:00
|
|
|
[dependencies.git2]
|
2017-03-30 12:23:14 -07:00
|
|
|
version = "0.6.4"
|
2015-02-09 16:33:27 +00:00
|
|
|
optional = true
|
2017-05-02 13:52:33 -07:00
|
|
|
default-features = false
|
2016-02-10 15:22:43 +00:00
|
|
|
|
2016-02-10 19:02:20 +00:00
|
|
|
[dependencies.zoneinfo_compiled]
|
2016-03-13 16:12:33 +01:00
|
|
|
git = "https://github.com/rust-datetime/zoneinfo-compiled.git"
|