[package]
edition = "2021"
rust-version = "1.85"
name = "ractor_cluster"
version = "0.16.3"
authors = ["Sean Lawlor <slawlor>"]
build = "src/build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed cluster environment of Ractor actors"
homepage = "https://github.com/slawlor/ractor"
documentation = "https://docs.rs/ractor"
readme = "README.md"
keywords = [
"actor",
"ractor",
"cluster",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/slawlor/ractor"
resolver = "3"
[features]
async-trait = [
"dep:async-trait",
"ractor/async-trait",
]
default = ["message_span_propogation"]
message_span_propogation = ["ractor/message_span_propogation"]
monitors = ["ractor/monitors"]
[lib]
name = "ractor_cluster"
path = "src/lib.rs"
[[bench]]
name = "message_serialization"
path = "benches/message_serialization.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.bytes]
version = "1"
[dependencies.prost]
version = "0.14"
[dependencies.prost-types]
version = "0.14"
[dependencies.ractor]
version = "0.16.0"
features = [
"tokio_runtime",
"cluster",
]
default-features = false
[dependencies.ractor_cluster_derive]
version = "0.16.0"
[dependencies.rand]
version = "0.10"
[dependencies.sha2]
version = "0.11"
[dependencies.socket2]
version = "0.6"
features = ["all"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"time",
"sync",
"macros",
"net",
"io-util",
"tracing",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"time",
"sync",
"macros",
"net",
"io-util",
"rt-multi-thread",
]
[build-dependencies.prost-build]
version = "0.14"
[build-dependencies.protoc-bin-vendored]
version = "3"