2024-12-16 02:28:13 -05:00
|
|
|
[package]
|
|
|
|
name = "smo-server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-17 19:29:22 -05:00
|
|
|
anyhow = { version = "1.0.94", features = ["backtrace"] }
|
|
|
|
crc32fast = "1.4.2"
|
|
|
|
glam = "0.29.2"
|
2024-12-16 02:28:13 -05:00
|
|
|
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"] }
|
2024-12-17 19:29:22 -05:00
|
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|
|
|
|
wtransport = "0.5.0"
|
2024-12-16 02:28:13 -05:00
|
|
|
xtra = { version = "0.6.0", features = ["macros", "tokio"] }
|
|
|
|
zerocopy = { version = "0.8.13", features = ["derive"] }
|
2024-12-17 19:29:22 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
roead = "1.0.0"
|