cc-daemon/Cargo.toml

23 lines
450 B
TOML
Raw Normal View History

2024-08-21 14:23:09 +02:00
[package]
2024-09-09 00:26:48 +02:00
name = "cc-daemon"
2024-08-21 14:23:09 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.38"
2024-09-09 00:26:48 +02:00
femme = "2.2.1"
2024-08-21 14:23:09 +02:00
http-body-util = "0.1.2"
hyper = { version = "1.4.1", features = ["full"] }
hyper-util = { version = "0.1.7", features = ["full"] }
2024-09-09 00:26:48 +02:00
log = "0.4.22"
mime = "0.3.17"
mime-sniffer = "0.1.2"
mime_guess = "2.0.5"
2024-08-21 14:23:09 +02:00
tokio = { version = "1.39.3", features = ["full"] }
2024-09-09 00:26:48 +02:00
[profile.release]
strip = true
lto = true
opt-level = "z"
codegen-units = 1