[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-openapi-plugin"
version = "0.1.3"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Optional OpenAPI 3.1 document Plugin for explicitly bound Lenso HTTP Endpoints."
readme = false
license = "MIT"
repository = "https://github.com/LioRael/lenso-web"
resolver = "2"
[package.metadata.lenso]
plugin-id = "lenso.openapi"
root-slot = "http-endpoints"
[lib]
name = "lenso_openapi_plugin"
path = "src/lib.rs"
[[test]]
name = "optional_plugin"
path = "tests/optional_plugin.rs"
[dependencies.futures]
version = "0.3"
[dependencies.lenso]
version = "0.5.0"
[dependencies.lenso-capability-http-endpoint]
version = "0.2.7"
[dependencies.lenso-kernel]
version = "0.2.0"
[dependencies.lenso-native-adapter]
version = "0.3.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.lenso-app-plan]
version = "0.3.0"
[dev-dependencies.lenso-runner]
version = "0.2.0"
[dev-dependencies.lenso-web-ingress-plugin]
version = "0.3.6"
[dev-dependencies.tokio]
version = "1.52"
features = [
"net",
"rt",
"sync",
"io-util",
"macros",
"rt",
"time",
]
[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"