[package]
edition = "2021"
rust-version = "1.70"
name = "dactor-test-harness"
version = "0.3.3"
authors = ["Yaming Liu <ymliu1978@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-process integration test harness for dactor actor framework"
homepage = "https://github.com/microsoft/dactor"
documentation = "https://docs.rs/dactor-test-harness"
readme = "README.md"
keywords = [
"actor",
"distributed",
"testing",
"harness",
"integration",
]
categories = [
"concurrency",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/microsoft/dactor"
[lib]
name = "dactor_test_harness"
path = "src/lib.rs"
[[bin]]
name = "test_node"
path = "src/bin/test_node.rs"
[[test]]
name = "harness_tests"
path = "tests/harness_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dactor]
version = "0.3.3"
[dependencies.dashmap]
version = "6"
[dependencies.prost]
version = "0.13"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"process",
"sync",
"rt",
"rt-multi-thread",
"time",
"net",
"macros",
"io-util",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tonic]
version = "0.13"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[build-dependencies.tonic-build]
version = "0.13"