[package]
edition = "2024"
name = "lenso-app-plan"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Immutable application plans for the Lenso vNext runtime."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso"
resolver = "2"
[lib]
name = "lenso_app_plan"
path = "src/lib.rs"
[[test]]
name = "admission"
path = "tests/admission.rs"
[[test]]
name = "execution"
path = "tests/execution.rs"
[[test]]
name = "placement"
path = "tests/placement.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.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"