Files
dht/Cargo.toml
T
chuan 2e8595575c feat: add DHT crawler and search application with UDP buffer management
- Implemented DHT types and options for configuration.
- Created UDP buffer pool for efficient packet handling.
- Developed UDP ingress handling with worker management.
- Established a new DHT search application with modular API structure.
- Defined domain models for fingerprinting and torrent metadata.
- Integrated storage solutions using RocksDB for persistent data management.
- Added telemetry for structured logging and metrics.
2026-08-06 00:01:11 +08:00

30 lines
540 B
TOML

[workspace]
members = ["dht-crawler", "dht-search"]
exclude = ["opencodes"]
resolver = "3"
[workspace.package]
edition = "2024"
authors = ["chuan <pchuan98@qq.com>"]
license = "MIT"
repository = "https://git.pchuan.top/tools/dht"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0.19"
tokio = "1.53"
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true