30 lines
540 B
TOML
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
|