mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-14 14:12:31 +00:00
40 lines
792 B
TOML
40 lines
792 B
TOML
[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"]
|
|
license = "Apache-2.0"
|
|
name = "lsd"
|
|
readme = "./README.md"
|
|
repository = "https://github.com/Peltoche/lsd"
|
|
version = "0.10.1-pre"
|
|
|
|
[[bin]]
|
|
name = "lsd"
|
|
path = "src/main.rs"
|
|
|
|
[build-dependencies]
|
|
clap = "2.32.0"
|
|
version_check = "0.1.3"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.11.0"
|
|
libc = "0.2.44"
|
|
term_grid = "0.1.7"
|
|
terminal_size = "0.1.8"
|
|
time = "0.1.40"
|
|
users = "0.8.0"
|
|
chrono-humanize = "0.0.11"
|
|
unicode-width = "0.1.5"
|
|
|
|
[dependencies.clap]
|
|
features = ["suggestions", "color", "wrap_help"]
|
|
version = "2.32.0"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.7"
|
|
|
|
[features]
|
|
sudo = []
|