summaryrefslogtreecommitdiff
path: root/crdt/Cargo.toml
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-11-23 17:27:44 +0200
committerJosh Kingsley <josh@joshkingsley.me>2025-11-23 17:27:44 +0200
commitc2a6efb1b761014a90d90373cad47a14054af40b (patch)
tree0c1127b0fea0456409502ec9a3105fe18a8a6434 /crdt/Cargo.toml
parenteb96b8eba0faf07adc5be4463759ec8b64ddc0e0 (diff)
feat(crdt): add wasm-bindgen
Diffstat (limited to 'crdt/Cargo.toml')
-rw-r--r--crdt/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/crdt/Cargo.toml b/crdt/Cargo.toml
index fe50142..71f745a 100644
--- a/crdt/Cargo.toml
+++ b/crdt/Cargo.toml
@@ -3,7 +3,13 @@ name = "notive-crdt"
version = "0.1.0"
edition = "2024"
+[lib]
+crate-type = ["cdylib"]
+
[dependencies]
num-rational = "0.4.2"
+serde = { version = "1.0.228", features = ["derive"] }
+serde-wasm-bindgen = "0.6.5"
thiserror = "2.0.17"
uuid = { version = "1.18.1", features = ["v7"] }
+wasm-bindgen = "0.2.105"