diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-03 13:48:11 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-03 13:48:11 -0500 |
commit | ca21047cc80ad5ba0f791fce024adc089afe6bad (patch) | |
tree | a1149b5ab95d8af81e35a9cf54d6e9865214ade1 /protocol | |
parent | d8de16a7187d2a05fd043946cf4cb32449a5aa3b (diff) |
Fix rust webapp dependencies
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index c7dda82..6c0c583 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -10,7 +10,6 @@ serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.85" uuid = { version = "1.2.0", features = ["serde", "wasm-bindgen", "v4", "fast-rng"] } rand = "0.8.4" -tokio = { version = "1.21.2", features = ["full"] } anyhow = "1.0" strum = "0.24" strum_macros = "0.24" @@ -22,3 +21,4 @@ async-trait = "0.1.58" [dev-dependencies] env_logger = "0.8.4" dotenv = "0.15" +tokio = { version = "1.21.2", features = ["full"] } |