-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
55 lines (47 loc) · 1.19 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
authors = ["Vanessa McHale <vanessa.mchale@iohk.io>"]
build = "build.rs"
description = "Command-line tool to find build artifacts and thing occupying space on your computer. Shatters records not glass."
documentation = "https://github.com/vmchale/tin-summer#README"
homepage = "https://github.com/vmchale/tin-summer"
license-file = "LICENSE"
name = "tin-summer"
readme = "README.md"
repository = "https://github.com/vmchale/tin-summer"
version = "1.21.14"
[metadata.deb]
extended-description = "Command-line tool written as a partial replacement for du. Automitically sniffs our build artifacts and can optionally clean them as well."
license-file = ["LICENSE"]
[[bin]]
name = "sn"
path = "src/main.rs"
[build-dependencies]
cli-setup = "0.2"
[build-dependencies.clap]
features = ["yaml"]
version = "2.33.0"
[dependencies]
colored = "1.6.0"
crossbeam = "0.6.0"
lazy_static = "1.3.0"
glob = "0.3"
nom = "3.2"
num_cpus = "1.10.0"
pad = "0.1.5"
walkdir = "2.2.7"
regex = "1.1.6"
[dependencies.clap]
features = ["yaml"]
version = "2.33.0"
[features]
bash = []
default = ["english"]
deutsch = []
english = []
fish = []
francais = []
[lib]
name = "liboskar"
path = "src/lib.rs"
[profile.release]
lto = true