summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 189651e72b90c29e7f1f15bccd503e5abeca34a8 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "dua-cli"
version = "2.7.0"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
edition = "2018"
repository = "https://github.com/Byron/dua-cli"
readme = "README.md"
description = "A tool to conveniently learn about the disk usage of directories, fast!"
license = "MIT"
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md", "!**/*_test/*"]

[dependencies]
failure = "0.1.1"
failure-tools = "4.0.2"
structopt = "0.3"
jwalk = "0.5.0"
byte-unit = "4"
termion = "1.5.2"
atty = "0.2.11"
tui = "0.9.1"
petgraph = "0.5"
itertools = "0.9.0"
open = "1.2.2"
log = "0.4.6"
tui-react = { path = "./tui-react", version = "0.4" }
num_cpus = "1.10.0"
unicode-segmentation = "1.3.0"
filesize = "0.2.0"
flume = {version = "0.7.1", default-features = false}

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

[lib]
name="dua"

[profile.release]
panic = 'abort'
incremental = false
overflow-checks = false
lto = "fat"
codegen-units = 1

[dev-dependencies]
pretty_assertions = "0.6.1"

[workspace]
members = ["tui-react"]