diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-11-14 00:06:56 +0200 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-11-14 00:14:21 +0200 |
| commit | 5447ffaf2f8f94cea5ad634472da1515172525e6 (patch) | |
| tree | 84cead36a9f634df5e36369c10ba22bac573ce89 /Cargo.lock | |
| parent | ccf7a93504965e0ecbd6d30adee1c8404fa65425 (diff) | |
feat(crdt): implement ChangeSubdivisions op
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -46,6 +46,7 @@ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" name = "notive-crdt" version = "0.1.0" dependencies = [ + "thiserror", "uuid", ] @@ -97,6 +98,26 @@ dependencies = [ ] [[package]] +name = "thiserror" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "unicode-ident" version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" |
