drizzle-cli 0.1.4

Command-line interface for drizzle-rs migrations
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.91"
name = "drizzle-cli"
version = "0.1.4"
authors = ["Mixed Nuts"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for drizzle-rs migrations"
readme = false
license = "MIT"
repository = "https://github.com/themixednuts/drizzle-rs"

[features]
default = []
libsql = [
    "dep:libsql",
    "dep:tokio",
]
postgres-all = [
    "postgres-sync",
    "tokio-postgres",
]
postgres-sync = ["dep:postgres"]
rusqlite = ["dep:rusqlite"]
sqlite-all = [
    "rusqlite",
    "libsql",
    "turso",
]
tokio-postgres = [
    "dep:tokio-postgres",
    "dep:tokio",
]
turso = [
    "dep:turso",
    "dep:libsql",
    "dep:tokio",
]

[lib]
name = "drizzle_cli"
path = "src/lib.rs"

[[bin]]
name = "drizzle"
path = "src/main.rs"

[[test]]
name = "migrate_custom_migrations_table"
path = "tests/migrate_custom_migrations_table.rs"

[[test]]
name = "push_explain"
path = "tests/push_explain.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
    "color",
]

[dependencies.colored]
version = "3.0"

[dependencies.dotenvy]
version = "0.15"

[dependencies.drizzle-migrations]
version = "0.1"

[dependencies.drizzle-types]
version = "0.1"
features = ["serde"]

[dependencies.glob]
version = "0.3"

[dependencies.heck]
version = "0.5"

[dependencies.libsql]
version = "0.9"
optional = true

[dependencies.postgres]
version = "0.19.12"
optional = true

[dependencies.rusqlite]
version = "0.37"
features = [
    "bundled",
    "bundled",
]
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "alloc",
    "derive",
]
default-features = false

[dependencies.serde_json]
version = "1.0"
default-features = false

[dependencies.thiserror]
version = "2.0"
default-features = false

[dependencies.tokio]
version = "1.48"
features = [
    "rt",
    "macros",
]
optional = true

[dependencies.tokio-postgres]
version = "0.7.15"
features = ["runtime"]
optional = true
default-features = false

[dependencies.toml]
version = "0.9"

[dependencies.turso]
version = "0.3"
optional = true
default-features = false

[dev-dependencies.assert_cmd]
version = "2.1"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.23"