31 lines
700 B
TOML
31 lines
700 B
TOML
[package]
|
|
name = "lanspread-peer"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
todo = "warn"
|
|
unwrap_used = "warn"
|
|
|
|
[dependencies]
|
|
# local
|
|
lanspread-db = { path = "../lanspread-db" }
|
|
lanspread-mdns = { path = "../lanspread-mdns" }
|
|
lanspread-proto = { path = "../lanspread-proto" }
|
|
lanspread-utils = { path = "../lanspread-utils" }
|
|
|
|
# external
|
|
bytes = { workspace = true }
|
|
eyre = { workspace = true }
|
|
gethostname = { workspace = true }
|
|
log = { workspace = true }
|
|
s2n-quic = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uuid = { workspace = true }
|
|
walkdir = { workspace = true }
|