2025-07-08 16:49:52 -07:00
|
|
|
[package]
|
|
|
|
|
name = "peoplesgrocers-lseq"
|
2025-12-12 21:11:07 -08:00
|
|
|
version = "0.99.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
authors = ["Karl <marxism@peoplesgrocers.com>", "nobody <nobody@localhost>"]
|
|
|
|
|
homepage = "https://peoplesgrocers.com/code/oss/lseq"
|
|
|
|
|
repository = "https://peoplesgrocers.com/code/oss/lseq"
|
|
|
|
|
documentation = "https://docs.rs/peoplesgrocers-lseq"
|
|
|
|
|
license = "AGPL-3.0"
|
2025-07-08 16:49:52 -07:00
|
|
|
description = "L-SEQ algorithm implementation for fractional indexing and list CRDTs"
|
2025-12-12 21:11:07 -08:00
|
|
|
keywords = ["lseq", "crdt", "fractional-indexing", "sequence", "multiplayer"]
|
2025-07-08 16:49:52 -07:00
|
|
|
categories = ["data-structures", "algorithms"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
serde = ["dep:serde"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-12 21:11:07 -08:00
|
|
|
rand = "0.9"
|
2025-07-08 16:49:52 -07:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-12-12 21:11:07 -08:00
|
|
|
rand = { version = "0.9", features = ["small_rng"] }
|