lsd/Cargo.toml

52 lines
1.1 KiB
TOML
Raw Normal View History

2018-11-12 12:33:47 +00:00
[package]
authors = ["Peltoche <dev@halium.fr>"]
build = "build.rs"
categories = ["command-line-utilities"]
2019-02-25 15:17:26 +00: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 12:33:47 +00:00
name = "lsd"
readme = "./README.md"
repository = "https://github.com/Peltoche/lsd"
2019-08-02 13:53:12 +00:00
version = "0.16.0"
edition = "2018"
2018-11-12 12:33:47 +00:00
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
clap = "2.32.0"
version_check = "0.1.3"
2018-11-12 12:33:47 +00:00
[dependencies]
ansi_term = "0.11.0"
libc = "0.2.44"
2018-11-25 14:56:39 +00:00
term_grid = "0.1.7"
2018-11-24 16:42:39 +00:00
terminal_size = "0.1.8"
2018-11-12 12:33:47 +00:00
time = "0.1.40"
2018-12-13 07:03:49 +00:00
chrono-humanize = "0.0.11"
unicode-width = "0.1.5"
2019-01-26 07:09:22 +00:00
lscolors = "0.5.0"
wild = "2.0.1"
2019-09-14 05:23:09 +00:00
globset = "0.4.4"
2018-11-30 13:53:54 +00:00
[target.'cfg(unix)'.dependencies]
users = "0.9.0"
2019-02-03 04:04:30 +00:00
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3.6", features = ["aclapi", "accctrl", "winnt", "winerror", "securitybaseapi", "winbase"]}
2019-02-03 04:04:30 +00:00
[dependencies.clap]
features = ["suggestions", "color", "wrap_help"]
2018-12-08 18:52:56 +00:00
version = "2.32.0"
[dev-dependencies]
assert_cmd = "0.11.1"
assert_fs = "0.11.3"
predicates = "1.0.1"
tempfile = "3"
[features]
sudo = []