Files
dkl/Cargo.toml

32 lines
853 B
TOML
Raw Normal View History

2025-06-29 18:28:01 +02:00
[package]
name = "dkl"
2025-07-18 08:20:13 +02:00
version = "1.0.0"
2025-06-29 18:28:01 +02:00
edition = "2024"
2025-07-20 18:48:47 +02:00
[profile.release]
strip = true
panic = "abort"
opt-level = "z"
lto = true
codegen-units = 1
2025-06-29 18:28:01 +02:00
[dependencies]
2025-07-20 18:48:47 +02:00
async-compression = { version = "0.4.27", features = ["tokio", "zstd"] }
2025-06-29 18:28:01 +02:00
bytes = "1.10.1"
2025-07-20 18:48:47 +02:00
chrono = { version = "0.4.41", default-features = false, features = ["now"] }
2025-07-02 21:11:35 +02:00
clap = { version = "4.5.40", features = ["derive", "env"] }
clap_complete = { version = "4.5.54", features = ["unstable-dynamic"] }
2025-06-29 18:28:01 +02:00
env_logger = "0.11.8"
eyre = "0.6.12"
futures-util = "0.3.31"
2025-07-20 18:48:47 +02:00
glob = "0.3.2"
2025-06-29 18:28:01 +02:00
log = "0.4.27"
2025-07-20 18:48:47 +02:00
page_size = "0.6.0"
2025-06-29 18:28:01 +02:00
reqwest = { version = "0.12.20", features = ["json", "stream"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = "0.9.34"
thiserror = "2.0.12"
2025-07-20 18:48:47 +02:00
tokio = { version = "1.45.1", features = ["fs", "io-std", "macros", "process", "rt"] }
2025-06-29 18:28:01 +02:00