[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-cluster-tools"
version = "0.9.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed pub/sub, cluster singleton, and cluster client patterns for atomr."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-cluster-tools"
readme = "README.md"
keywords = [
"actor",
"cluster",
"pubsub",
"singleton",
]
categories = [
"network-programming",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "atomr_cluster_tools"
path = "src/lib.rs"
[[test]]
name = "cluster_client_spec"
path = "tests/cluster_client_spec.rs"
[[test]]
name = "cluster_singleton_spec"
path = "tests/cluster_singleton_spec.rs"
[[test]]
name = "pubsub_multinode"
path = "tests/pubsub_multinode.rs"
[[test]]
name = "pubsub_specs"
path = "tests/pubsub_specs.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr-cluster]
version = "0.9.2"
[dependencies.atomr-core]
version = "0.9.2"
[dependencies.parking_lot]
version = "0.12"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.atomr-config]
version = "0.9.2"
[dev-dependencies.atomr-testkit]
version = "0.9.2"
[lints.clippy]
todo = "deny"
unimplemented = "deny"