[package]
edition = "2021"
rust-version = "1.70"
name = "dactor-ractor"
version = "0.3.3"
authors = ["Yaming Liu <ymliu1978@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ractor adapter for the dactor distributed actor framework"
homepage = "https://github.com/microsoft/dactor"
documentation = "https://docs.rs/dactor-ractor"
readme = "README.md"
keywords = [
"actor",
"distributed",
"ractor",
"framework",
"runtime",
]
categories = [
"concurrency",
"network-programming",
]
license = "MIT"
repository = "https://github.com/microsoft/dactor"
[features]
test-harness = [
"dep:dactor-test-harness",
"dep:tracing-subscriber",
"dep:serde_json",
]
[lib]
name = "dactor_ractor"
path = "src/lib.rs"
[[bin]]
name = "test-node-ractor"
path = "src/bin/test_node_ractor.rs"
required-features = ["test-harness"]
[[test]]
name = "adapter_tests"
path = "tests/adapter_tests.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "lifecycle_handle_tests"
path = "tests/lifecycle_handle_tests.rs"
[[test]]
name = "native_system_actor_tests"
path = "tests/native_system_actor_tests.rs"
[[test]]
name = "transport_routing_tests"
path = "tests/transport_routing_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dactor]
version = "0.3.3"
features = ["serde"]
[dependencies.dactor-test-harness]
version = "0.3.3"
optional = true
[dependencies.futures]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.ractor]
version = "0.15"
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"time",
"macros",
"rt-multi-thread",
"sync",
"rt",
"time",
"macros",
"rt-multi-thread",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
optional = true
[dev-dependencies.dactor]
version = "0.3.3"
features = [
"serde",
"test-support",
]
[dev-dependencies.dactor-test-harness]
version = "0.3.3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]