replication-engine 0.1.2

Mesh replication agent for sync-engine nodes
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.dashmap]
version = "6"

[dependencies.futures]
version = "0.3"

[dependencies.governor]
version = "0.8"

[dependencies.hex]
version = "0.4"

[dependencies.humantime]
version = "2"

[dependencies.metrics]
version = "0.24"

[dependencies.parking_lot]
version = "0.12"

[dependencies.recloser]
version = "1"

[dependencies.redis]
features = ["tokio-comp", "connection-manager", "streams"]
version = "0.27"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.sqlx]
features = ["runtime-tokio", "sqlite"]
version = "0.8"

[dependencies.sync-engine]
version = "0.2.6"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
features = ["full", "sync", "time", "signal"]
version = "1"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter", "json"]
version = "0.3"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1"

[dependencies.zstd]
version = "0.13"

[dev-dependencies.arbitrary]
features = ["derive"]
version = "1"

[dev-dependencies.async-trait]
version = "0.1"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.test-log]
features = ["trace"]
version = "0.2"

[dev-dependencies.testcontainers]
version = "0.15"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[features]
default = []

[lib]
name = "replication_engine"
path = "src/lib.rs"

[package]
authors = ["Adrian Robinson <adrian.j.robinson@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "network-programming"]
description = "Mesh replication agent for sync-engine nodes"
edition = "2021"
keywords = ["replication", "sync", "distributed", "crdt", "mesh"]
license = "AGPL-3.0"
name = "replication-engine"
readme = "README.md"
repository = "https://github.com/transilluminate/replication-engine"
rust-version = "1.75"
version = "0.1.2"

[package.metadata.cargo-fuzz]
fuzz = true

[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true

[[test]]
name = "chaos_tests"
path = "tests/chaos_tests.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"