[package]
edition = "2021"
name = "rabia-counter-example"
version = "0.4.1"
authors = ["Rabia Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple counter state machine implementation example using the Rabia SMR protocol"
homepage = "https://github.com/rabia-rs/rabia"
documentation = "https://docs.rs/rabia"
readme = "README.md"
keywords = [
"consensus",
"distributed-systems",
"consensus-protocol",
"smr",
"async",
]
categories = [
"algorithms",
"data-structures",
"network-programming",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/rabia-rs/rabia"
[lib]
name = "rabia_counter_example"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
version = "1.3"
[dependencies.rabia-core]
version = "0.4.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"