[package]
edition = "2021"
name = "spacedb-crdt"
version = "0.5.2"
authors = ["Mata Network"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SpaceDB Layer 1 — convergent collections: the Y-CRDT (yrs) document model with a typed field->CRDT mapping (LWW-Register, PN-Counter, ...), local-first mutation, and order-independent merge. Phase 1 SpaceDB Mission, M2. See 'docs/plans/(working) phase 1 spacedb mission.md'."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/spacedb-crdt"
readme = "README.md"
keywords = [
"crdt",
"database",
"local-first",
"sync",
"offline-first",
]
categories = [
"data-structures",
"database-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/spacedb"
[lib]
name = "spacedb_crdt"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "compact"
path = "tests/compact.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[[test]]
name = "fields"
path = "tests/fields.rs"
[[test]]
name = "lag"
path = "tests/lag.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "reactive"
path = "tests/reactive.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.spacedb-store]
version = "0.5.2"
[dependencies.thiserror]
version = "1"
[dependencies.yrs]
version = "0.25"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.3"
features = ["wasm_js"]