[package]
edition = "2024"
name = "lift"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lift migration parser and CLI tooling."
homepage = "https://github.com/hiovior/lift"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/hiovior/lift"
[features]
default = []
full = [
"sqlite",
"postgres",
"mariadb",
]
mariadb = ["lift-migration/mariadb"]
postgres = ["lift-migration/postgres"]
sqlite = ["lift-migration/sqlite"]
[lib]
name = "lift"
path = "src/lib.rs"
[[bin]]
name = "lift"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.38"
features = ["derive"]
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.lift-migration]
version = "0.1.7"
default-features = false
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = ["rt-multi-thread"]