19 lines
468 B
TOML
19 lines
468 B
TOML
[package]
|
|
name = "offline-web-ws"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "exp2"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# NOTE(zaphar): we depend on this version of axum for axum-typed-websockets to work
|
|
axum = { version = "0.7.4", features = ["macros", "ws"] }
|
|
blake2 = "0.10.6"
|
|
rand = "0.9.0"
|
|
serde = { version = "1.0.219", features = ["derive", "rc"] }
|
|
tokio = "1.44.1"
|
|
offline-web-model = { path = "../offline-web-model" }
|
|
axum-typed-websockets = "0.6.0"
|