diff options
-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"] } |