[package]
edition = "2024"
name = "mingli-engine"
version = "1.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Orchestration: a memoized shared context and a parallel fan-out over an injected registry. Knows the ports, never a leaf."
readme = false
keywords = [
"orchestration",
"divination",
"parallel",
"fanout",
]
categories = [
"algorithms",
"concurrency",
]
license = "MIT"
repository = "https://github.com/goliajp/mingli"
resolver = "2"
[lib]
name = "mingli_engine"
path = "src/lib.rs"
[dependencies.mingli-contract]
version = "1.1.1"
[dependencies.serde_json]
version = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1"
[lints.clippy]
doc_markdown = "allow"
many_single_char_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"