[package]
edition = "2021"
rust-version = "1.78"
name = "atomr-hosting"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Builder API for wiring a atomr system together — config, DI, setup hooks."
homepage = "https://github.com/rustakka/atomr"
documentation = "https://docs.rs/atomr-hosting"
readme = "README.md"
keywords = [
"actor",
"hosting",
"dependency-injection",
]
categories = [
"rust-patterns",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/rustakka/atomr"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "atomr_hosting"
path = "src/lib.rs"
[[test]]
name = "hosting_spec"
path = "tests/hosting_spec.rs"
[dependencies.atomr-config]
version = "0.3.0"
[dependencies.atomr-core]
version = "0.3.0"
[dependencies.atomr-di]
version = "0.3.0"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[lints.clippy]
todo = "deny"
unimplemented = "deny"