summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: d27f75f55974ae874ecf8c2613df4eb152ac1fd3 (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
[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/dup"
license = "MIT/Apache-2.0"
name = "du-dup"
readme = "README.md"
repository = "https://github.com/sharkdp/dup"
version = "0.2.0"

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

[dependencies]
ignore = "0.4.3"
num_cpus = "1.0"
humansize = "1.1"

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

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