lsd/Cargo.toml

40 lines
764 B
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"]
description = "A ls command with a lot of pretty colors."
homepage = "https://github.com/Peltoche/lsd"
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"
2018-12-16 11:29:35 +01:00
version = "0.10.0"
2018-11-12 13:33:47 +01:00
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
clap = "2.32.0"
version_check = "0.1.3"
2018-11-12 13:33:47 +01:00
[dependencies]
ansi_term = "0.11.0"
libc = "0.2.44"
2018-11-25 15:56:39 +01:00
term_grid = "0.1.7"
2018-11-24 17:42:39 +01:00
terminal_size = "0.1.8"
2018-11-12 13:33:47 +01:00
time = "0.1.40"
users = "0.8.0"
2018-12-13 12:33:49 +05:30
chrono-humanize = "0.0.11"
2018-11-30 14:53:54 +01:00
[dependencies.clap]
features = ["suggestions", "color", "wrap_help"]
2018-12-08 19:52:56 +01:00
version = "2.32.0"
[dev-dependencies]
tempdir = "0.3.7"
[features]
sudo = []