Include a serde feature in the shared crate

This commit is contained in:
2024-03-23 13:36:28 +01:00
parent 3d93bf0fda
commit f1962503b8
22 changed files with 134 additions and 281 deletions

View File

@@ -7,13 +7,13 @@ edition = "2021"
[dependencies]
futures = { version = "0.3" }
board-shared = { path = "../board-shared" }
board-shared = { path = "../board-shared", features = ["serde"] }
board-network = { path = "../board-network" }
smol = "1.3.0"
async-tungstenite = "0.20.0"
tungstenite = "0.18.0"
smol = "2.0.0"
async-tungstenite = "0.25.0"
tungstenite = "0.21.0"
anyhow = "1.0.69"
rand = "0.8.5"
serde_json = "1.0.93"
redis = { version = "0.22.3", features = ["aio", "async-std-comp"] }
redis = { version = "0.25.2", features = ["aio", "async-std-comp"] }
async-trait = "0.1.66"