summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-10-09 08:12:26 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-10-09 08:12:26 -0400
commit3529444fe1fcb72977dc636b0091ad2e85abed31 (patch)
tree629926519d92b836de4e5e9f904ca0420d137f26
parentadb006199c55b41b84862004eb53477a4f175524 (diff)
Add missing wasm dependency to protocol crate
-rw-r--r--Cargo.lock1
-rw-r--r--protocol/Cargo.toml2
2 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9b8c0a5..0027025 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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"] }