17 lines
440 B
TOML
17 lines
440 B
TOML
[package]
|
|
name = "backbone-lib"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
postcard = { version = "1.1", features = ["use-std"] }
|
|
bytes = "1.11"
|
|
ewebsock = "0.8"
|
|
protocol = { path = "../../server/protocol" }
|
|
futures = "0.3"
|
|
web-time = "1.1"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wasm-bindgen-futures = "0.4"
|
|
gloo-timers = { version = "0.3", features = ["futures"] }
|