15 lines
524 B
TOML
15 lines
524 B
TOML
|
[package]
|
||
|
name = "smo-server"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.94"
|
||
|
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"] }
|
||
|
xtra = { version = "0.6.0", features = ["macros", "tokio"] }
|
||
|
zerocopy = { version = "0.8.13", features = ["derive"] }
|