[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.migratio]
default-features = false
version = "0.3.0"
[dependencies.mysql]
optional = true
version = ">=24.0, <=26.0"
[dependencies.postgres]
optional = true
version = "0.19"
[dependencies.rusqlite]
default-features = false
optional = true
version = ">=0.30, <=0.37"
[features]
default = []
mysql = ["migratio/mysql", "dep:mysql"]
postgres = ["migratio/postgres", "dep:postgres"]
sqlite = ["migratio/sqlite", "dep:rusqlite"]
[lib]
name = "migratio_cli"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "command-line-utilities"]
description = "CLI support library for migratio database migrations"
edition = "2021"
homepage = "https://github.com/samgqroberts/migratio"
keywords = ["database", "migration", "cli"]
license = "MIT"
name = "migratio-cli"
readme = false
repository = "https://github.com/samgqroberts/migratio"
version = "0.3.2"