[package]
edition = "2021"
name = "mdcs-delta"
version = "0.1.1"
authors = [
"Suvan Gowri Shanker <suvan.gowrishanker.204@gmail.com>",
"Avinash Chidambaram <avinash.a2k4@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Delta-state CRDT machinery for the Carnelia Merkle-Delta CRDT Store"
homepage = "https://suvangs.tech"
readme = "README.md"
keywords = [
"CRDT",
"delta-state",
"anti-entropy",
"distributed",
"replication",
]
categories = ["data-structures"]
license = "GPL-3.0"
repository = "https://github.com/Agate-DB/Carnelia"
[lib]
name = "mdcs_delta"
path = "src/lib.rs"
[[bin]]
name = "mdcs-delta"
path = "src/main.rs"
[[test]]
name = "causal_consistency"
path = "tests/causal_consistency.rs"
[[test]]
name = "convergence"
path = "tests/convergence.rs"
[dependencies.mdcs-core]
version = "0.1.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.rand]
version = "0.8"