exa/Cargo.toml

84 lines
1.9 KiB
TOML
Raw Normal View History

2014-06-28 16:24:20 +00:00
[package]
name = "exa"
description = "A modern replacement for ls"
2021-04-03 16:41:54 +00:00
authors = ["Benjamin Sago <ogham@bsago.me>"]
categories = ["command-line-utilities"]
edition = "2021"
2023-08-03 16:34:16 +00:00
rust-version = "1.66.1"
exclude = ["/devtools/*", "/Justfile", "/Vagrantfile", "/screenshots.png"]
readme = "README.md"
2021-04-03 16:41:54 +00:00
homepage = "https://the.exa.website/"
license = "MIT"
repository = "https://github.com/ogham/exa"
2021-04-12 21:28:31 +00:00
version = "0.10.1"
2014-06-28 16:24:20 +00:00
[[bin]]
name = "exa"
2015-01-12 00:20:28 +00:00
[dependencies]
ansi_term = "0.12"
glob = "0.3"
lazy_static = "1.3"
libc = "0.2"
locale = "0.2"
log = "0.4"
natord = "1.0"
num_cpus = "1.10"
number_prefix = "0.4"
scoped_threadpool = "0.1"
2021-12-10 12:21:13 +00:00
term_grid = "0.2.0"
terminal_size = "0.1.16"
unicode-width = "0.1"
zoneinfo_compiled = "0.5.1"
2020-05-02 04:15:50 +00:00
[target.'cfg(unix)'.dependencies]
2021-03-26 08:37:17 +00:00
users = "0.11"
[dependencies.datetime]
version = "0.5.2"
default-features = false
features = ["format"]
2019-04-17 05:53:42 +00:00
[dependencies.git2]
version = "0.13"
2019-04-17 05:53:42 +00:00
optional = true
default-features = false
[build-dependencies.datetime]
version = "0.5.2"
default-features = false
[features]
2015-01-27 15:59:22 +00:00
default = [ "git" ]
git = [ "git2" ]
vendored-openssl = ["git2/vendored-openssl"]
# make dev builds faster by excluding debug symbols
[profile.dev]
debug = false
# use LTO for smaller binaries (that take longer to build)
[profile.release]
lto = true
[package.metadata.deb]
license-file = [ "LICENCE", "4" ]
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" ],
[ "target/release/../man/exa.1", "/usr/share/man/man1/exa.1", "0644" ],
[ "target/release/../man/exa_colors.5", "/usr/share/man/man5/exa_colors.5", "0644" ],
[ "completions/bash/exa", "/usr/share/bash-completion/completions/exa", "0644" ],
[ "completions/zsh/_exa", "/usr/share/zsh/site-functions/_exa", "0644" ],
[ "completions/fish/exa.fish", "/usr/share/fish/vendor_completions.d/exa.fish", "0644" ],
]