lsd/Cargo.toml

82 lines
2 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/lsd-rs/lsd"
version = "1.1.5"
2022-02-13 17:21:44 +00:00
edition = "2021"
rust-version = "1.74"
2018-11-12 12:33:47 +00:00
[[bin]]
name = "lsd"
path = "src/main.rs"
[build-dependencies]
clap = { version = "4.3.*", features = ["derive"] }
clap_complete = "4.3"
2019-10-24 16:10:03 +00:00
version_check = "0.9.*"
2018-11-12 12:33:47 +00:00
[dependencies]
crossterm = { version = "0.27.0", features = ["serde"] }
dirs = "5"
2019-10-24 16:10:03 +00:00
libc = "0.2.*"
human-sort = "0.2.2"
# should stick to 0.1, the 0.2 needs some adaptation
# check https://github.com/lsd-rs/lsd/issues/1014
term_grid = "0.1"
terminal_size = "0.3"
thiserror = "1.0"
sys-locale = "0.3"
once_cell = "1.17.1"
chrono = { version = "0.4.19", features = ["unstable-locales"] }
chrono-humanize = "0.2"
# incompatible with v0.1.11
2024-06-19 05:06:15 +00:00
unicode-width = "0.1.13"
lscolors = "0.16.0"
wild = "2.0"
2019-10-24 16:10:03 +00:00
globset = "0.4.*"
yaml-rust = "0.4.*"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
url = "2.1"
vsort = "0.2"
xdg = "2.5"
2018-11-30 13:53:54 +00:00
2023-04-30 16:26:15 +00:00
[target."cfg(not(all(windows, target_arch = \"x86\", target_env = \"gnu\")))".dependencies]
# if ssl feature is enabled compilation will fail on arm-unknown-linux-gnueabihf and i686-pc-windows-gnu
git2 = { version = "0.18", optional = true, default-features = false }
2023-04-30 16:26:15 +00:00
[target.'cfg(unix)'.dependencies]
users = { version = "0.11.3", package = "uzers" }
2023-09-26 15:21:19 +00:00
xattr = "1"
2019-02-03 04:04:30 +00:00
[target.'cfg(windows)'.dependencies]
2022-11-06 19:56:57 +00:00
windows = { version = "0.43.0", features = ["Win32_Foundation", "Win32_Security_Authorization", "Win32_Storage_FileSystem", "Win32_System_Memory"] }
2019-02-03 04:04:30 +00:00
[dependencies.clap]
features = ["derive", "wrap_help"]
version = "4.3.*"
[dev-dependencies]
assert_cmd = "2"
assert_fs = "1"
predicates = "3"
tempfile = "3"
serial_test = "2.0"
[features]
2023-04-30 16:26:15 +00:00
default = ["git2"]
sudo = []
2023-04-30 16:26:15 +00:00
no-git = [] # force disabling git even if available by default
[profile.release]
lto = true
codegen-units = 1
strip = true
2022-09-05 09:23:06 +00:00
debug = false