[package]
edition = "2024"
name = "microde-application"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Composition and lifecycle runtime for modular Microde applications."
readme = "README.md"
keywords = [
"application",
"composition",
"lifecycle",
"runtime",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/DLii-Technologies/microde"
[lib]
name = "microde_application"
path = "src/lib.rs"
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "module_traits"
path = "tests/module_traits.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "public_runtime"
path = "tests/public_runtime.rs"
[dependencies.event-listener]
version = "5.4.1"
[dependencies.futures]
version = "0.3.31"
features = ["thread-pool"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]