[package]
edition = "2021"
rust-version = "1.85.0"
name = "elfo"
version = "0.2.0-alpha.21"
authors = ["Paul Loyd <pavelko95@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An asynchronous distributed actor framework with robust observability"
readme = "README.md"
keywords = [
"elfo",
"actor",
"distributed",
"tokio",
"observability",
]
license = "MIT"
repository = "https://github.com/elfo-rs/elfo"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
full = [
"elfo-configurer",
"elfo-logger",
"elfo-dumper",
"elfo-telemeter",
"elfo-pinger",
]
network = ["elfo-network"]
test-util = [
"elfo-test",
"elfo-core/test-util",
"elfo-configurer?/test-util",
]
tokio-tracing = ["elfo-core/tokio-tracing"]
tracing-log = ["elfo-logger?/tracing-log"]
turmoil06 = ["elfo-network?/turmoil06"]
turmoil07 = ["elfo-network?/turmoil07"]
unstable = [
"elfo-core/unstable",
"elfo-telemeter?/unstable",
"elfo-test?/unstable",
]
unstable-stuck-detection = ["elfo-core/unstable-stuck-detection"]
[lib]
name = "elfo"
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "config_validation"
path = "tests/config_validation.rs"
[[test]]
name = "gentle_outcome"
path = "tests/gentle_outcome.rs"
[[test]]
name = "mailbox_capacity"
path = "tests/mailbox_capacity.rs"
[[test]]
name = "message_macro"
path = "tests/message_macro.rs"
[[test]]
name = "msg_macro"
path = "tests/msg_macro.rs"
[[test]]
name = "protocol_evolution"
path = "tests/protocol_evolution.rs"
[[test]]
name = "remote_messaging"
path = "tests/remote_messaging.rs"
[[test]]
name = "request_routing"
path = "tests/request_routing.rs"
[[test]]
name = "restarting"
path = "tests/restarting.rs"
[[test]]
name = "source_delay"
path = "tests/source_delay.rs"
[[test]]
name = "source_interval"
path = "tests/source_interval.rs"
[[test]]
name = "source_signal"
path = "tests/source_signal.rs"
[[test]]
name = "source_stream"
path = "tests/source_stream.rs"
[[test]]
name = "start_info"
path = "tests/start_info.rs"
[[test]]
name = "subscription_to_statuses"
path = "tests/subscription_to_statuses.rs"
[[test]]
name = "termination"
path = "tests/termination.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[[test]]
name = "update_config"
path = "tests/update_config.rs"
[dependencies.elfo-configurer]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-core]
version = "=0.2.0-alpha.21"
[dependencies.elfo-dumper]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-logger]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-macros]
version = "=0.2.0-alpha.21"
[dependencies.elfo-network]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-pinger]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-telemeter]
version = "=0.2.0-alpha.21"
optional = true
[dependencies.elfo-test]
version = "=0.2.0-alpha.21"
optional = true
[dev-dependencies.anyhow]
version = "1.0.38"
[dev-dependencies.derive_more]
version = "2"
features = [
"constructor",
"deref",
"display",
"error",
"from",
"into",
"is_variant",
]
[dev-dependencies.elfo-test]
version = "=0.2.0-alpha.21"
[dev-dependencies.futures]
version = "0.3.21"
[dev-dependencies.futures-intrusive]
version = "0.5"
[dev-dependencies.libc]
version = "0.2.169"
[dev-dependencies.metrics]
version = "0.17.1"
[dev-dependencies.parking_lot]
version = "0.12.1"
[dev-dependencies.serde]
version = "1.0.225"
features = ["derive"]
[dev-dependencies.static_assertions]
version = "1.1.0"
[dev-dependencies.thread_local]
version = "1.1.8"
[dev-dependencies.tokio]
version = "1.38"
features = ["full"]
[dev-dependencies.toml]
version = "1.1.0"
[dev-dependencies.tracing]
version = "0.1.27"
[dev-dependencies.tracing-subscriber]
version = "0.3.8"
[dev-dependencies.trybuild]
version = "1.0"
[dev-dependencies.turmoil]
version = "0.7"
[lints.clippy]
undocumented_unsafe_blocks = "warn"
[lints.rust]
missing_docs = "warn"
unexpected_cfgs = "allow"
unreachable_pub = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1