20 lines
578 B
TOML
20 lines
578 B
TOML
[package]
|
|
name = "LogCollection"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bytes = "1.10.1"
|
|
crossbeam = "0.8.4"
|
|
reqwest = { version = "0.12.24", features = ["json"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
spin = "0.10.0"
|
|
tokio = { version = "1.48.0", features = ["full", "tracing"] }
|
|
tracing = "0.1.41"
|
|
tracing-appender = "0.2.3"
|
|
tracing-futures = "0.2.5"
|
|
tracing-subscriber = { version = "0.3.20", features = ["json", "env-filter", "fmt"] }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } |