[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-platform-runtime-operations"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Service-owned Runtime Operations System Plane Capability Provider."
readme = false
license = "MIT"
resolver = "2"
[lib]
name = "platform_runtime_operations"
path = "src/lib.rs"
[[test]]
name = "runtime_operations"
path = "tests/runtime_operations.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.lenso-service]
version = "0.1.16"
[dependencies.platform-core]
version = "0.1.16"
package = "lenso-platform-core"
[dependencies.platform-system-plane]
version = "0.1.1"
package = "lenso-platform-system-plane"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"postgres",
"uuid",
"chrono",
"json",
"macros",
]
default-features = false
[dependencies.utoipa]
version = "5.5"
features = [
"axum_extras",
"chrono",
"uuid",
]
[dependencies.utoipa-axum]
version = "0.2"
[dev-dependencies.http]
version = "1.4"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.jsonschema]
version = "0.47"
default-features = false
[dev-dependencies.platform-runtime]
version = "0.1.13"
package = "lenso-platform-runtime"
[dev-dependencies.platform-testing]
version = "0.1.12"
package = "lenso-platform-testing"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dev-dependencies.tower]
version = "0.5"
[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"