lseq/rust/Cargo.toml

24 lines
787 B
TOML
Raw Permalink Normal View History

[package]
name = "peoplesgrocers-lseq"
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"
description = "L-SEQ algorithm implementation for fractional indexing and list CRDTs"
keywords = ["lseq", "crdt", "fractional-indexing", "sequence", "multiplayer"]
categories = ["data-structures", "algorithms"]
readme = "README.md"
[features]
default = []
serde = ["dep:serde"]
[dependencies]
rand = "0.9"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
rand = { version = "0.9", features = ["small_rng"] }