summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: cf5f9269657475a9a7b5e720d339a56e6bd1c6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["David Peter <mail@david-peter.de>"]
categories = ["command-line-utilities"]
description = "A minimal, fast alternative to 'du -sh'."
homepage = "https://github.com/sharkdp/diskus"
license = "MIT/Apache-2.0"
name = "diskus"
readme = "README.md"
repository = "https://github.com/sharkdp/diskus"
version = "0.6.0"
edition = "2018"

[dependencies]
num_cpus = "1.0"
humansize = "1.1"
num-format = "0.4"
rayon = "1.0"
crossbeam-channel = "0.3"
atty = "0.2"

[dependencies.clap]
version = "2"
features = ["suggestions", "color", "wrap_help"]

[dev-dependencies]
tempdir = "0.3"

[[bin]]
name = "diskus"
path = "src/main.rs"

[profile.release]
lto = true
codegen-units = 1