feat: experiment with different implementations of LSEQ
This commit is contained in:
commit
1e45ef9314
23 changed files with 3578 additions and 0 deletions
21
rust/Cargo.toml
Normal file
21
rust/Cargo.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[package]
|
||||
name = "peoplesgrocers-lseq"
|
||||
version = "1.0.0"
|
||||
edition = "2021"
|
||||
description = "L-SEQ algorithm implementation for fractional indexing and list CRDTs"
|
||||
keywords = ["lseq", "crdt", "fractional-indexing", "sequence", "collaborative-editing"]
|
||||
categories = ["data-structures", "algorithms"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/peoplesgrocers/lseq"
|
||||
readme = "README.md"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
serde = ["dep:serde"]
|
||||
|
||||
[dependencies]
|
||||
rand = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
rand = { version = "0.8", features = ["small_rng"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue