[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-core"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Actors, supervision, dispatch, mailboxes, scheduler, FSM, event stream, and coordinated shutdown — the core of the atomr actor runtime."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-core"
readme = "README.md"
keywords = [
"actor",
"concurrency",
"async",
"supervisor",
"tokio",
]
categories = [
"concurrency",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "atomr_core"
path = "src/lib.rs"
[[test]]
name = "actor_lifecycle"
path = "tests/actor_lifecycle.rs"
[[test]]
name = "actor_lifecycle_spec"
path = "tests/actor_lifecycle_spec.rs"
[[test]]
name = "circuit_breaker_stress_spec"
path = "tests/circuit_breaker_stress_spec.rs"
[[test]]
name = "extensions_spec"
path = "tests/extensions_spec.rs"
[[test]]
name = "fsm_macro"
path = "tests/fsm_macro.rs"
[[test]]
name = "io_manager_spec"
path = "tests/io_manager_spec.rs"
[[test]]
name = "path_address_spec"
path = "tests/path_address_spec.rs"
[[test]]
name = "routing_specs"
path = "tests/routing_specs.rs"
[[test]]
name = "sender_typed"
path = "tests/sender_typed.rs"
[[test]]
name = "serialization_spec"
path = "tests/serialization_spec.rs"
[[test]]
name = "stash_spec"
path = "tests/stash_spec.rs"
[[test]]
name = "typed_context"
path = "tests/typed_context.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomr-config]
version = "0.3.1"
[dependencies.bincode]
version = "2.0.0-rc.3"
features = ["serde"]
[dependencies.bytes]
version = "1"
[dependencies.dashmap]
version = "6"
[dependencies.flume]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1.39"
features = [
"full",
"full",
"test-util",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[lints.clippy]
todo = "deny"
unimplemented = "deny"