-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
46 lines (40 loc) · 1.13 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
[package]
name = "docuum"
version = "0.25.0"
authors = ["Stephan Boyer <stephan@stephanboyer.com>"]
edition = "2021"
description = "LRU eviction of Docker images."
license = "MIT"
documentation = "https://github.com/stepchowfun/docuum"
homepage = "https://github.com/stepchowfun/docuum"
repository = "https://github.com/stepchowfun/docuum"
readme = "README.md"
[lints]
clippy.all = { level = "deny", priority = -1 }
clippy.default_numeric_fallback = "deny"
clippy.pedantic = { level = "deny", priority = -1 }
rust.warnings = "deny"
[dependencies]
atty = "0.2"
byte-unit = "4"
chrono = "0.4"
colored = "2"
dirs = "3"
env_logger = { version = "0.8", default-features = false, features = ["termcolor", "atty"] }
log = "0.4"
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-perl"] }
serde_json = "1.0"
serde_yaml = "0.8"
tempfile = "3"
parse_duration = "2.1.1"
[target.'cfg(target_os = "linux")'.dependencies]
sysinfo = "0.23.5"
[dependencies.clap]
version = "2"
features = ["wrap_help"]
[dependencies.ctrlc]
version = "3"
features = ["termination"] # [tag:ctrlc_term]
[dependencies.serde]
version = "1"
features = ["derive"]