2018-11-12 12:33:47 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Peltoche <dev@halium.fr>"]
|
2018-12-06 13:42:16 +00:00
|
|
|
build = "build.rs"
|
2018-11-25 11:29:12 +00:00
|
|
|
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."
|
2018-11-25 11:29:12 +00:00
|
|
|
keywords = ["ls"]
|
2018-12-08 05:57:54 +00:00
|
|
|
license = "Apache-2.0"
|
2018-11-12 12:33:47 +00:00
|
|
|
name = "lsd"
|
2018-11-25 11:29:12 +00:00
|
|
|
readme = "./README.md"
|
|
|
|
repository = "https://github.com/Peltoche/lsd"
|
2022-09-13 03:25:33 +00:00
|
|
|
version = "0.23.1"
|
2022-02-13 17:21:44 +00:00
|
|
|
edition = "2021"
|
2018-11-12 12:33:47 +00:00
|
|
|
|
2018-12-06 13:42:16 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "lsd"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-08-23 10:48:31 +00:00
|
|
|
clap = "3.2.17"
|
|
|
|
clap_complete = "3.2.4"
|
2019-10-24 16:10:03 +00:00
|
|
|
version_check = "0.9.*"
|
2018-12-06 13:42:16 +00:00
|
|
|
|
2018-11-12 12:33:47 +00:00
|
|
|
[dependencies]
|
2022-07-03 16:28:51 +00:00
|
|
|
crossterm = { version = "0.24.0", features = ["serde"]}
|
2020-09-24 18:09:26 +00:00
|
|
|
dirs = "3.0.*"
|
2019-10-24 16:10:03 +00:00
|
|
|
libc = "0.2.*"
|
2020-09-24 18:09:26 +00:00
|
|
|
human-sort = "0.2.2"
|
2019-10-24 16:10:03 +00:00
|
|
|
term_grid = "0.1.*"
|
|
|
|
terminal_size = "0.1.*"
|
2022-08-05 06:53:11 +00:00
|
|
|
thiserror = "1.0"
|
2021-01-13 09:35:04 +00:00
|
|
|
chrono = "0.4.*"
|
|
|
|
chrono-humanize = "0.1.*"
|
2019-10-24 16:10:03 +00:00
|
|
|
unicode-width = "0.1.*"
|
2022-02-13 17:21:44 +00:00
|
|
|
lscolors = "0.9.0"
|
2019-10-24 16:10:03 +00:00
|
|
|
wild = "2.0.*"
|
|
|
|
globset = "0.4.*"
|
2020-09-24 18:09:26 +00:00
|
|
|
xdg = "2.1.*"
|
|
|
|
yaml-rust = "0.4.*"
|
2020-10-31 10:20:59 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2020-04-18 04:14:42 +00:00
|
|
|
url = "2.1.*"
|
2018-11-30 13:53:54 +00:00
|
|
|
|
2019-02-02 22:35:22 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-10-04 15:02:50 +00:00
|
|
|
users = "0.11.*"
|
2022-03-15 04:13:52 +00:00
|
|
|
xattr = "0.2.*"
|
2019-02-02 22:35:22 +00:00
|
|
|
|
2019-02-03 04:04:30 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-10-24 16:10:03 +00:00
|
|
|
winapi = {version = "0.3.*", features = ["aclapi", "accctrl", "winnt", "winerror", "securitybaseapi", "winbase"]}
|
2019-02-03 04:04:30 +00:00
|
|
|
|
2018-12-06 13:42:16 +00:00
|
|
|
[dependencies.clap]
|
|
|
|
features = ["suggestions", "color", "wrap_help"]
|
2022-08-23 10:48:31 +00:00
|
|
|
version = "3.2.17"
|
2018-12-09 15:53:20 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-04-16 10:53:57 +00:00
|
|
|
assert_cmd = "1"
|
|
|
|
assert_fs = "1"
|
2019-10-05 20:08:45 +00:00
|
|
|
predicates = "1.0.1"
|
2019-06-09 19:53:22 +00:00
|
|
|
tempfile = "3"
|
2021-01-13 09:46:20 +00:00
|
|
|
serial_test = "0.5"
|
2018-12-09 15:53:20 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
sudo = []
|
2022-08-21 14:18:47 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
strip = true
|
2022-09-05 09:23:06 +00:00
|
|
|
debug = false
|