[package]
edition = "2021"
rust-version = "1.70"
name = "dactor-mock"
version = "0.3.3"
authors = ["Yaming Liu <ymliu1978@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mock multi-node cluster for testing dactor actor systems"
homepage = "https://github.com/microsoft/dactor"
documentation = "https://docs.rs/dactor-mock"
readme = "README.md"
keywords = [
"actor",
"distributed",
"mock",
"testing",
"framework",
]
categories = [
"concurrency",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/microsoft/dactor"
[lib]
name = "dactor_mock"
path = "src/lib.rs"
[[test]]
name = "mock_tests"
path = "tests/mock_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dactor]
version = "0.3.3"
features = ["test-support"]
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"time",
"macros",
"rt-multi-thread",
"sync",
"rt",
"time",
"macros",
"rt-multi-thread",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]