feat: prepare for publishing rust crate

This commit is contained in:
nobody 2025-12-12 21:11:07 -08:00
commit bb0a08a427
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
2 changed files with 76 additions and 11 deletions

View file

@ -1,12 +1,15 @@
[package]
name = "peoplesgrocers-lseq"
version = "1.0.0"
edition = "2021"
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", "collaborative-editing"]
keywords = ["lseq", "crdt", "fractional-indexing", "sequence", "multiplayer"]
categories = ["data-structures", "algorithms"]
license = "MIT"
repository = "https://github.com/peoplesgrocers/lseq"
readme = "README.md"
[features]
@ -14,8 +17,8 @@ default = []
serde = ["dep:serde"]
[dependencies]
rand = "0.8"
rand = "0.9"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
rand = { version = "0.8", features = ["small_rng"] }
rand = { version = "0.9", features = ["small_rng"] }