-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (51 loc) · 1.28 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
56
57
58
59
60
61
[package]
name = "stor-age"
version = "0.6.5"
authors = ["Christian Krause <[email protected]>"]
description = "show aging of directories"
license = "GPL-3.0-or-later"
readme = "README.md"
documentation = "https://github.com/idiv-biodiversity/stor-age"
homepage = "https://github.com/idiv-biodiversity/stor-age"
repository = "https://github.com/idiv-biodiversity/stor-age"
keywords = ["storage", "age", "spectrum-scale"]
categories = ["command-line-utilities", "filesystem"]
edition = "2021"
rust-version = "1.70"
[dependencies]
anyhow = "1"
env_logger = "0.10"
is-terminal = "0.4"
log = "0.4"
[dependencies.bstr]
version = "1"
optional = true
[dependencies.bytesize]
version = "1"
optional = true
[dependencies.clap]
version = "4"
features = ["cargo", "deprecated", "wrap_help"]
[dependencies.prettytable-rs]
version = "0.10"
optional = true
default_features = false
features = ["win_crlf"]
[dependencies.smooth]
version = "0.2"
optional = true
[dependencies.tempfile]
version = "3"
optional = true
[features]
default = ["table"]
spectrum-scale = ["bstr", "tempfile"]
table = ["bytesize", "prettytable-rs", "smooth"]
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[build-dependencies]
clap = { version = "4", features = ["cargo"] }
clap_complete = "4"
clap_mangen = "0.2"