-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
37 lines (32 loc) · 825 Bytes
/
Cargo.toml
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
35
36
37
[package]
name = "dirstat-rs"
version = "0.3.8"
authors = ["scullionw <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "A disk usage cli similar to windirstat"
repository = "https://github.com/scullionw/dirstat-rs"
keywords = ["cli", "disk", "usage", "tree", "windirstat"]
categories = ["command-line-utilities"]
[dependencies]
structopt = "0.2.18"
rayon = "1.5.1"
pretty-bytes = "0.2.2"
termcolor = "1.1.2"
atty = "0.2.14"
serde = { version = "1.0.131", features = ["derive"] }
serde_json = "1.0.73"
[target.'cfg(windows)'.dependencies]
winapi-util = "0.1.2"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.7"
features = ["winerror"]
[profile.release]
lto = 'fat'
codegen-units = 1
incremental = false
[[bin]]
bench = false
path = "src/bin/main.rs"
name = "ds"