[package]
edition = "2021"
rust-version = "1.85"
name = "reconcile"
version = "0.3.0"
build = false
exclude = [
"pre-commit",
"CONTRIBUTING.md",
"examples/k8s/",
"ARCHITECTURE.md",
"SOTA.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reconciliation storage service to sync a key-value map over multiple instances"
readme = "README.md"
keywords = [
"reconciliation",
"gossip",
"replicated",
"distributed",
"crdt",
]
categories = [
"data-structures",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Akvize/reconcile-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["mac-blake3"]
dns-hickory = ["gossip/dns-hickory"]
encryption = ["gossip/encryption"]
internal-testing = ["rbsr/internal-testing"]
mac-blake3 = ["gossip/mac-blake3"]
mac-hmac = ["gossip/mac-hmac"]
metrics = ["dep:metrics"]
metrics-prometheus = [
"metrics",
"dep:metrics-exporter-prometheus",
]
zeroize = ["gossip/zeroize"]
[lib]
name = "reconcile"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "discovery"
path = "tests/discovery.rs"
[[test]]
name = "fuzz_packets"
path = "tests/fuzz_packets.rs"
[[test]]
name = "item_range_reexport"
path = "tests/item_range_reexport.rs"
[[test]]
name = "netem"
path = "tests/netem.rs"
[[test]]
name = "observability"
path = "tests/observability.rs"
[[test]]
name = "proptest_fingerprint_tree_map"
path = "tests/proptest_fingerprint_tree_map.rs"
[[test]]
name = "read_api"
path = "tests/read_api.rs"
[[test]]
name = "read_replica_map"
path = "tests/read_replica_map.rs"
[[test]]
name = "service"
path = "tests/service.rs"
[[test]]
name = "timestamp_wire_format"
path = "tests/timestamp_wire_format.rs"
[[test]]
name = "tombstone_wheel"
path = "tests/tombstone_wheel.rs"
[[test]]
name = "wire_format"
path = "tests/wire_format.rs"
[[test]]
name = "wire_version_mismatch"
path = "tests/wire_version_mismatch.rs"
[[test]]
name = "write_api"
path = "tests/write_api.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "protocol"
path = "benches/protocol.rs"
harness = false
[[bench]]
name = "system"
path = "benches/system.rs"
harness = false
[dependencies.bincode]
version = "1.3.3"
[dependencies.chrono]
version = "0.4.31"
features = ["serde"]
[dependencies.gossip]
version = "0.3.0"
default-features = false
package = "reconcile-gossip"
[dependencies.ipnet]
version = "2.9.0"
[dependencies.lww-register]
version = "0.3.0"
[dependencies.metrics]
version = "0.24"
optional = true
[dependencies.metrics-exporter-prometheus]
version = "0.16"
features = ["http-listener"]
optional = true
default-features = false
[dependencies.parking_lot]
version = "0.12.1"
[dependencies.rand]
version = "0.8.5"
[dependencies.rbsr]
version = "0.1.0"
[dependencies.rsos]
version = "0.3.0"
[dependencies.serde]
version = "1.0.192"
features = ["derive"]
[dependencies.tokio]
version = "1.33.0"
features = [
"net",
"time",
"rt",
"macros",
"sync",
]
[dependencies.tracing]
version = "0.1.40"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.clap]
version = "4.4.6"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.metrics-util]
version = "0.19"
features = ["debugging"]
default-features = false
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.socket2]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.33.0"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.17"
[profile.release]
debug = 2
overflow-checks = true