首次提交

This commit is contained in:
2025-11-19 20:03:11 +08:00
commit 5cb9c66653
5 changed files with 2282 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[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)'] }