lsd/Cargo.toml

53 lines
1.1 KiB
TOML
Raw Normal View History

2018-11-12 13:33:47 +01:00
[package]
authors = ["Peltoche <dev@halium.fr>"]
build = "build.rs"
categories = ["command-line-utilities"]
2019-02-25 10:17:26 -05:00
description = "An ls command with a lot of pretty colors and some other stuff."
keywords = ["ls"]
2018-12-08 05:57:54 +00:00
license = "Apache-2.0"
2018-11-12 13:33:47 +01:00
name = "lsd"
readme = "./README.md"
repository = "https://github.com/Peltoche/lsd"
version = "0.17.1-pre"
edition = "2018"
2018-11-12 13:33:47 +01:00
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
2019-10-24 18:10:03 +02:00
clap = "2.33.*"
version_check = "0.9.*"
2019-11-07 11:59:20 +09:00
time = "0.1.*"
2018-11-12 13:33:47 +01:00
[dependencies]
2019-10-24 18:10:03 +02:00
ansi_term = "0.12.*"
libc = "0.2.*"
term_grid = "0.1.*"
terminal_size = "0.1.*"
time = "0.1.*"
chrono-humanize = "0.0.*"
unicode-width = "0.1.*"
lscolors = "0.7"
2019-10-24 18:10:03 +02:00
wild = "2.0.*"
globset = "0.4.*"
2018-11-30 14:53:54 +01:00
[target.'cfg(unix)'.dependencies]
2020-08-08 14:28:33 +02:00
users = "0.10.*"
2019-02-02 23:04:30 -05:00
[target.'cfg(windows)'.dependencies]
2019-10-24 18:10:03 +02:00
winapi = {version = "0.3.*", features = ["aclapi", "accctrl", "winnt", "winerror", "securitybaseapi", "winbase"]}
2019-02-02 23:04:30 -05:00
[dependencies.clap]
features = ["suggestions", "color", "wrap_help"]
2019-10-24 18:10:03 +02:00
version = "2.33.*"
[dev-dependencies]
assert_cmd = "1"
assert_fs = "1"
predicates = "1.0.1"
tempfile = "3"
[features]
sudo = []