[package]
edition = "2021"
rust-version = "1.70"
name = "crdt-kit"
version = "0.1.0"
authors = ["abdielLopezpy"]
build = false
exclude = [
"benches/",
".github/",
"*.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CRDTs optimized for edge computing and local-first applications"
homepage = "https://github.com/abdielLopezpy/crdt-kit"
documentation = "https://docs.rs/crdt-kit"
readme = "README.md"
keywords = [
"crdt",
"edge-computing",
"local-first",
"offline",
"distributed",
]
categories = [
"data-structures",
"algorithms",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/abdielLopezpy/crdt-kit"
[features]
default = ["std"]
std = []
[lib]
name = "crdt_kit"
path = "src/lib.rs"
[[example]]
name = "chat"
path = "examples/chat.rs"
[[example]]
name = "counter"
path = "examples/counter.rs"
[[example]]
name = "todo_list"
path = "examples/todo_list.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde_json]
version = "1"