[package]
edition = "2024"
name = "lenso-native-adapter"
version = "0.2.3"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Rust Execution Adapter for Lenso vNext."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso-runtime-rust"
resolver = "2"
[package.metadata.lenso]
package-id = "lenso.native-adapter"
[lib]
name = "lenso_native_adapter"
path = "src/lib.rs"
[[test]]
name = "configuration"
path = "tests/configuration.rs"
[[test]]
name = "struct_authoring"
path = "tests/struct_authoring.rs"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
[dependencies.lenso-app-plan]
version = "0.2.0"
[dependencies.lenso-kernel]
version = "0.1.12"
[dependencies.lenso-native-adapter-macros]
version = "0.1.2"
[dependencies.serde_json]
version = "1"
[dev-dependencies.lenso-module-authoring]
version = "0.1.1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[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"