diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-10-09 08:12:26 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-10-09 08:12:26 -0400 |
commit | 3529444fe1fcb72977dc636b0091ad2e85abed31 (patch) | |
tree | 629926519d92b836de4e5e9f904ca0420d137f26 | |
parent | adb006199c55b41b84862004eb53477a4f175524 (diff) |
Add missing wasm dependency to protocol crate
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | protocol/Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2418,6 +2418,7 @@ dependencies = [ "getrandom", "rand", "serde", + "wasm-bindgen", ] [[package]] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 92c0a5e..b217d93 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" [dependencies] serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.85" -uuid = "1.2.0" +uuid = { version = "1.2.0", features = ["serde", "wasm-bindgen", "v4", "fast-rng"] } |