16 lines
351 B
TOML
16 lines
351 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.94"
|
|
axum = "0.7.9"
|
|
common = {path = "../common"}
|
|
ping-rs = "0.1.2"
|
|
postcard = {version = "1.0.0", features = ["alloc"]}
|
|
serde = "*"
|
|
tokio = { version = "1.42.0", features = ["full"] }
|
|
tracing = "0.1.41"
|
|
tracing-appender = "0.2.3"
|
|
tracing-subscriber = "0.3.19"
|