dactor-coerce 0.3.3

Coerce adapter for the dactor distributed actor framework
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "dactor-coerce"
version = "0.3.3"
authors = ["Yaming Liu <ymliu1978@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Coerce adapter for the dactor distributed actor framework"
homepage = "https://github.com/microsoft/dactor"
documentation = "https://docs.rs/dactor-coerce"
readme = "README.md"
keywords = [
    "actor",
    "distributed",
    "coerce",
    "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_coerce"
path = "src/lib.rs"

[[bin]]
name = "test-node-coerce"
path = "src/bin/test_node_coerce.rs"
required-features = ["test-harness"]

[[test]]
name = "adapter_tests"
path = "tests/adapter_tests.rs"

[[test]]
name = "corner_case_tests"
path = "tests/corner_case_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.coerce]
version = "0.8"

[dependencies.dactor]
version = "0.3.3"
features = ["serde"]

[dependencies.dactor-test-harness]
version = "0.3.3"
optional = true

[dependencies.futures]
version = "0.3"

[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-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 = ["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",
]