[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-module-management"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared management kernel for Lenso Module lifecycle clients."
homepage = "https://github.com/LioRael/lenso"
readme = false
keywords = [
"backend",
"framework",
"modules",
"management",
]
categories = [
"web-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/LioRael/lenso"
resolver = "2"
[lib]
name = "lenso_module_management"
path = "src/lib.rs"
[[test]]
name = "cargo_lock"
path = "tests/cargo_lock.rs"
[[test]]
name = "linked_workspace"
path = "tests/linked_workspace.rs"
[[test]]
name = "management"
path = "tests/management.rs"
[[test]]
name = "planner"
path = "tests/planner.rs"
[[test]]
name = "provider_runtime"
path = "tests/provider_runtime.rs"
[[test]]
name = "resolver"
path = "tests/resolver.rs"
[[test]]
name = "service_installation"
path = "tests/service_installation.rs"
[[test]]
name = "workspace"
path = "tests/workspace.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.fs2]
version = "0.4"
[dependencies.lenso-contracts]
version = "0.4.0"
[dependencies.schemars]
version = "1"
features = ["chrono04"]
[dependencies.semver]
version = "1.0.28"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[lints.clippy]
all = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
pedantic = "warn"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"