21 lines
No EOL
603 B
TOML
21 lines
No EOL
603 B
TOML
[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"] } |