[package]
edition = "2024"
name = "lenso-runner"
version = "0.2.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Tokio Runtime Driver and Runner for Lenso vNext."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso-runtime-rust"
resolver = "2"
[lib]
name = "lenso_runner"
path = "src/lib.rs"
[[bin]]
name = "lenso-runner"
path = "src/main.rs"
[[test]]
name = "native_runner"
path = "tests/native_runner.rs"
[[test]]
name = "replicated_interactions"
path = "tests/replicated_interactions.rs"
[[test]]
name = "replicated_lane_benchmark"
path = "tests/replicated_lane_benchmark.rs"
[[test]]
name = "replicated_lanes"
path = "tests/replicated_lanes.rs"
[[test]]
name = "replicated_terminal"
path = "tests/replicated_terminal.rs"
[[test]]
name = "shutdown"
path = "tests/shutdown.rs"
[[test]]
name = "tokio_driver"
path = "tests/tokio_driver.rs"
[dependencies.cpu-time]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.lenso-app-plan]
version = "0.3.0"
[dependencies.lenso-kernel]
version = "0.2.0"
[dependencies.tokio]
version = "1.52"
features = [
"io-util",
"macros",
"net",
"rt",
"signal",
"sync",
"time",
"sync",
]
[dev-dependencies.lenso-native-adapter]
version = "0.3.1"
[dev-dependencies.lenso-runtime-conformance]
version = "0.2.0"
[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"