[package]
edition = "2021"
name = "dstate"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed state replication across actor-based clusters"
homepage = "https://github.com/Yaming-Hub/dstate"
readme = "README.md"
keywords = [
"distributed",
"state",
"replication",
"actor",
"crdt",
]
categories = [
"concurrency",
"network-programming",
]
license = "MIT"
repository = "https://github.com/Yaming-Hub/dstate"
[lib]
name = "dstate"
path = "src/lib.rs"
[[test]]
name = "clock_and_doubles_tests"
path = "tests/clock_and_doubles_tests.rs"
[[test]]
name = "envelope_tests"
path = "tests/envelope_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "registry_tests"
path = "tests/registry_tests.rs"
[[test]]
name = "runtime_tests"
path = "tests/runtime_tests.rs"
[[test]]
name = "state_model_tests"
path = "tests/state_model_tests.rs"
[[test]]
name = "sync_integration_tests"
path = "tests/sync_integration_tests.rs"
[[test]]
name = "wire_protocol_tests"
path = "tests/wire_protocol_tests.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = [
"time",
"sync",
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.tracing-test]
version = "0.2"