ractor 0.15.8

A actor framework for Rust
Documentation
[[bench]]
harness = false
name = "actor"
path = "benches/actor.rs"
required-features = []

[[bench]]
harness = false
name = "async_traits"
path = "benches/async_traits.rs"
required-features = []

[dependencies.async-std]
features = ["attributes", "unstable"]
optional = true
version = "1"

[dependencies.async-trait]
optional = true
version = "0.1"

[dependencies.bon]
version = "2.2"

[dependencies.dashmap]
version = "6"

[dependencies.futures]
version = "0.3"

[dependencies.once_cell]
version = "1"

[dependencies.pot]
optional = true
version = "3.0"

[dependencies.serde]
optional = true
version = "1"

[dependencies.strum]
features = ["derive"]
version = "0.26"

[dependencies.tokio]
features = ["sync"]
version = "1"

[dependencies.tracing]
features = ["attributes"]
version = "0.1"

[dev-dependencies.backtrace]
version = "0.3"

[dev-dependencies.function_name]
version = "0.3"

[dev-dependencies.paste]
version = "1"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.serial_test]
version = "3.0.0"

[dev-dependencies.tracing-glog]
version = "0.4"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[[example]]
name = "a_whole_lotta"
path = "examples/a_whole_lotta.rs"

[[example]]
name = "a_whole_lotta_messages"
path = "examples/a_whole_lotta_messages.rs"

[[example]]
name = "counter"
path = "examples/counter.rs"

[[example]]
name = "monte_carlo"
path = "examples/monte_carlo.rs"

[[example]]
name = "output_port"
path = "examples/output_port.rs"

[[example]]
name = "philosophers"
path = "examples/philosophers.rs"

[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"

[[example]]
name = "supervisor"
path = "examples/supervisor.rs"

[features]
async-trait = ["dep:async-trait"]
blanket_serde = ["serde", "pot", "cluster"]
cluster = []
default = ["tokio_runtime", "message_span_propogation"]
message_span_propogation = []
monitors = []
output-port-v2 = []
tokio_runtime = ["tokio/time", "tokio/rt", "tokio/macros", "tokio/tracing"]

[lib]
name = "ractor"
path = "src/lib.rs"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(tokio_unstable)", "cfg(rust_analyzer)"]
level = "warn"
priority = 0

[package]
authors = ["Sean Lawlor", "Evan Au", "Dillon George"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous"]
description = "A actor framework for Rust"
documentation = "https://docs.rs/ractor"
edition = "2021"
homepage = "https://github.com/slawlor/ractor"
keywords = ["actor", "ractor"]
license = "MIT"
name = "ractor"
readme = "README.md"
repository = "https://github.com/slawlor/ractor"
rust-version = "1.64"
version = "0.15.8"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies.criterion]
default-features = false
version = "0.5"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies.getrandom]
features = ["js"]
version = "0.2"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies.tokio]
features = ["rt", "time", "sync", "macros"]
version = "1.30"

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dev-dependencies.wasm-bindgen-test]
version = "0.3.50"

[target.'cfg(all(target_arch = "wasm32",target_os = "unknown"))'.dependencies.js-sys]
version = "0.3.77"

[target.'cfg(all(target_arch = "wasm32",target_os = "unknown"))'.dependencies.tokio_with_wasm]
features = ["macros", "sync", "rt", "time"]
version = "0.8.2"

[target.'cfg(all(target_arch = "wasm32",target_os = "unknown"))'.dependencies.wasm-bindgen]
version = "0.2.100"

[target.'cfg(all(target_arch = "wasm32",target_os = "unknown"))'.dependencies.wasm-bindgen-futures]
version = "0.4.50"

[target.'cfg(all(target_arch = "wasm32",target_os = "unknown"))'.dependencies.web-time]
version = "1.1.0"

[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dev-dependencies.criterion]
version = "0.5"

[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dev-dependencies.tokio]
features = ["rt", "time", "sync", "macros", "rt-multi-thread", "tracing"]
version = "1.30"

[target.'cfg(not(all(target_arch = "wasm32", target_os = "unknown")))'.dev-dependencies.tracing-test]
version = "0.2"