summaryrefslogtreecommitdiff
path: root/protocol
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 /protocol
parentadb006199c55b41b84862004eb53477a4f175524 (diff)
Add missing wasm dependency to protocol crate
Diffstat (limited to 'protocol')
-rw-r--r--protocol/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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"] }