smo-server/Cargo.toml
2024-12-21 05:35:44 -06:00

20 lines
723 B
TOML

[package]
name = "smo-server"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.94", features = ["backtrace"] }
clap = { version = "4.5.23", features = ["derive"] }
crc32fast = "1.4.2"
glam = "0.29.2"
heapless = "0.8.0"
newtype-enum = { git = "https://github.com/mgjm/newtype-enum", version = "0.1.0" }
tokio = { version = "1.42.0", features = ["rt", "macros", "net", "sync", "rt-multi-thread", "io-util", "io-std"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = { version = "1.11.0", features = ["v4"] }
wtransport = "0.5.0"
xtra = { version = "0.6.0", features = ["macros", "tokio"] }
zerocopy = { version = "0.8.13", features = ["derive"] }