exa/Cargo.toml

75 lines
1.5 KiB
TOML
Raw Normal View History

2014-06-28 16:24:20 +00:00
[package]
name = "exa"
2019-07-15 03:07:45 +00:00
version = "0.9.0"
authors = [ "Benjamin Sago <ogham@bsago.me>" ]
build = "build.rs"
2018-12-07 23:43:31 +00:00
edition = "2018"
2014-06-28 16:24:20 +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"
exclude = ["/devtools/*", "/Justfile", "/Vagrantfile", "/screenshots.png"]
2014-06-28 16:24:20 +00:00
[[bin]]
name = "exa"
2015-01-12 00:20:28 +00:00
[dependencies]
2019-07-14 10:39:41 +00:00
ansi_term = "0.12.0"
datetime = "0.5"
2019-04-17 05:53:42 +00:00
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.11"
zoneinfo_compiled = "0.5"
2019-04-17 05:53:42 +00:00
[dependencies.git2]
version = "0.9.1"
2019-04-17 05:53:42 +00:00
optional = true
default-features = false
[build-dependencies]
datetime = "0.5"
[features]
2015-01-27 15:59:22 +00:00
default = [ "git" ]
git = [ "git2" ]
vendored-openssl = ["git2/vendored-openssl"]
[profile.release]
opt-level = 3
debug = false
lto = true
panic = "abort"
[package.metadata.deb]
license-file = [ "LICENCE" ]
depends = "$auto"
extended-description = """
exa is a replacement for ls written in Rust.
"""
section = "utils"
priority = "optional"
assets = [
[ "target/release/exa", "/usr/bin/exa", "0755" ],
[ "contrib/man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
[ "contrib/completions.bash", "/etc/bash_completion.d/exa", "0644" ],
]