[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-platform-runtime"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime function primitives for the Lenso backend framework."
homepage = "https://github.com/LioRael/lenso"
readme = false
keywords = [
"backend",
"framework",
"runtime",
]
categories = [
"web-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/LioRael/lenso"
resolver = "2"
[lib]
name = "platform_runtime"
path = "src/lib.rs"
[[test]]
name = "function_runtime"
path = "tests/function_runtime.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.platform-core]
version = "0.1.0"
package = "lenso-platform-core"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"postgres",
"uuid",
"chrono",
"json",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23"
features = [
"serde",
"v7",
]
[dev-dependencies.platform-testing]
version = "0.1.0"
package = "lenso-platform-testing"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[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"