-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
41 lines (37 loc) · 1.64 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
[package]
name = "container-retention-policy"
version = "3.0.0"
edition = "2021"
license = "MIT"
[package.metadata]
description = "This crate uses Unicode data provided by the Unicode Consortium under the Unicode 3.0 License."
[dependencies]
clap = { version = "4.5.4", features = ["derive", "env"]}
chrono = { version="0.4.37" , features=["serde", "clock"], default-features = false}
color-eyre = { version = "0.6.3", default-features = false }
humantime = "2.1.0"
indicatif = { version = "0.17.8", default-features = false }
regex = { version = "1.10.4", default-features = false }
reqwest = {version = "0.12.2", features = ["json", "rustls-tls"], default-features = false }
secrecy = { version = "0.8.0" }
serde = { version = "1.0.197", features = ["derive"], default-features = false }
serde_json = { version = "1.0.115", default-features = false }
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"], default-features = false }
tower = { version = "0.5.2", default-features = false, features = ["limit", "util"] }
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], default-features = false }
tracing-indicatif = "0.3.6"
url = { version = "2.5.0" , default-features = false}
urlencoding = { version="2.1.3" }
wildmatch = { version = "2.3.3" }
[dev-dependencies]
assert_cmd = "2.0.14"
tracing-test = "0.2.4"
[profile.release]
# https://github.com/johnthagen/min-sized-rust
# Optimize release profile for size, as the runtime of the action
# is bottlenecked by GitHub's API response times, not the speed of our code.
lto = true
strip = true
opt-level = "z"
codegen-units = 1