[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-migrate"
version = "0.1.10"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Migration runner for the Lenso host runtime."
homepage = "https://github.com/LioRael/lenso"
readme = false
keywords = [
"backend",
"framework",
"migrations",
]
categories = [
"web-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/LioRael/lenso"
resolver = "2"
[lib]
name = "lenso_migrate"
path = "src/lib.rs"
[[bin]]
name = "lenso-migrate"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.lenso-bootstrap]
version = "0.1.10"
[dependencies.platform-core]
version = "0.1.5"
package = "lenso-platform-core"
[dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dependencies.tracing]
version = "0.1"
[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"