[package]
edition = "2024"
name = "lenso-host-runtime"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Prepared-distribution runtime for TypeScript-authored Lenso Hosts."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso-bun-adapter"
resolver = "2"
[[bin]]
name = "lenso-host-runtime"
path = "src/main.rs"
[[test]]
name = "runtime_control"
path = "tests/runtime_control.rs"
[dependencies.lenso]
version = "0.5.2"
features = ["host"]
[dependencies.lenso-bun-adapter]
version = "0.1.6"
[dependencies.lenso-host-distribution]
version = "0.1.0"
[dependencies.lenso-kernel]
version = "0.3.2"
[dependencies.lenso-plugin-control-plane]
version = "0.4.1"
[dependencies.lenso-process-adapter]
version = "0.1.1"
[dependencies.lenso-runtime-codec]
version = "0.3.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"io-util",
"macros",
"net",
"rt",
"signal",
"sync",
"time",
]
[dev-dependencies.lenso-app-plan]
version = "0.4.1"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"