-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (34 loc) · 1016 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
38
39
[package]
name = "mmdu"
version = "0.5.0"
authors = ["Christian Krause <[email protected]>"]
description = "disk usage for IBM Storage Scale file systems"
license = "GPL-3.0-or-later"
readme = "README.md"
documentation = "https://github.com/idiv-biodiversity/mmdu"
homepage = "https://github.com/idiv-biodiversity/mmdu"
repository = "https://github.com/idiv-biodiversity/mmdu"
keywords = ["disk", "usage", "gpfs", "spectrum-scale", "storage-scale"]
categories = ["command-line-utilities", "filesystem"]
edition = "2021"
rust-version = "1.74"
[features]
log = ["dep:log", "dep:env_logger"]
[dependencies]
anyhow = "1"
bstr = "1"
bytesize = "1"
env_logger = { version = "0.11", optional = true }
libc = "0.2"
log = { version = "0.4", optional = true }
pwd-grp = "0.1"
tempfile = "3"
[dependencies.clap]
version = "4"
features = ["cargo", "deprecated", "wrap_help"]
[build-dependencies]
clap = { version = "4", features = ["cargo"] }
clap_complete = "4"
clap_mangen = "0.2"
[profile.release]
lto = true