1
0
mirror of https://github.com/bootandy/dust synced 2024-07-03 05:08:34 +00:00
dust/Cargo.toml

92 lines
1.9 KiB
TOML
Raw Normal View History

2018-03-12 02:04:22 +00:00
[package]
name = "du-dust"
description = "A more intuitive version of du"
2024-03-25 21:36:11 +00:00
version = "1.0.0"
2018-03-21 05:09:29 +00:00
authors = ["bootandy <bootandy@gmail.com>", "nebkor <code@ardent.nebcorp.com>"]
2022-08-22 11:31:12 +00:00
edition = "2021"
2021-09-05 08:16:02 +00:00
readme = "README.md"
2018-03-12 02:04:22 +00:00
documentation = "https://github.com/bootandy/dust"
homepage = "https://github.com/bootandy/dust"
repository = "https://github.com/bootandy/dust"
keywords = ["du", "command-line", "disk", "disk-usage"]
categories = ["command-line-utilities"]
license = "Apache-2.0"
[badges]
2021-06-05 12:39:59 +00:00
travis-ci = { repository = "https://travis-ci.org/bootandy/dust" }
[[bin]]
name = "dust"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = true
strip = true
2018-03-12 02:04:22 +00:00
[dependencies]
ansi_term = "0.12"
2023-11-21 23:13:07 +00:00
clap = "4.4"
2023-01-26 15:55:48 +00:00
lscolors = "0.13"
terminal_size = "0.2"
2020-08-16 20:44:51 +00:00
unicode-width = "0.1"
rayon = "1"
2020-08-21 07:24:51 +00:00
thousands = "0.2"
stfu8 = "0.2"
regex = "1"
config-file = "0.2"
serde = { version = "1.0", features = ["derive"] }
2024-04-25 03:18:16 +00:00
serde_json = "1.0"
directories = "4"
2023-01-26 15:55:48 +00:00
sysinfo = "0.27"
ctrlc = "3.4"
2024-04-25 03:18:16 +00:00
chrono = "0.4"
[target.'cfg(windows)'.dependencies]
winapi-util = "0.1"
filesize = "0.2.0"
[dev-dependencies]
2023-01-26 15:55:48 +00:00
assert_cmd = "2"
tempfile = "=3"
2022-08-22 11:31:12 +00:00
[build-dependencies]
2023-11-21 23:13:07 +00:00
clap = "4.4"
clap_complete = "4.4"
clap_mangen = "0.2"
2022-08-22 11:31:12 +00:00
[[test]]
name = "integration"
path = "tests/tests.rs"
2021-09-05 08:16:02 +00:00
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/dust-v{ version }-{ target }{ archive-suffix }"
bin-dir = "dust-v{ version }-{ target }/{ bin }{ binary-ext }"
2021-09-05 08:16:02 +00:00
[package.metadata.deb]
section = "utils"
assets = [
[
"target/release/dust",
"usr/bin/",
"755",
],
[
"LICENSE",
"usr/share/doc/du-dust/",
"644",
],
[
"README.md",
"usr/share/doc/du-dust/README",
"644",
],
2021-09-05 08:16:02 +00:00
]
extended-description = """\
Dust is meant to give you an instant overview of which directories are using
disk space without requiring sort or head. Dust will print a maximum of one
'Did not have permissions message'.
"""