[package]
edition = "2021"
name = "mdcs-compaction"
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 = "Compaction, pruning and stability subsystem for the Carnelia MDCS"
homepage = "https://suvangs.tech"
readme = "README.md"
keywords = [
"CRDT",
"compaction",
"garbage-collection",
"DAG",
"distributed",
]
categories = ["data-structures"]
license = "GPL-3.0"
repository = "https://github.com/Agate-DB/Carnelia"
[lib]
name = "mdcs_compaction"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.mdcs-core]
version = "0.1.1"
[dependencies.mdcs-merkle]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.proptest]
version = "1.4"