feat: prepare for publishing rust crate
This commit is contained in:
parent
546d6deb69
commit
bb0a08a427
2 changed files with 76 additions and 11 deletions
|
|
@ -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"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue