msqlx-cli 0.9.0-msqlx.1

Temporary fork of sqlx-cli with unreleased fixes. Command-line utility for SQLx, the Rust SQL toolkit.
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 = "2021"
rust-version = "1.93.0"
name = "msqlx-cli"
version = "0.9.0-msqlx.1"
authors = [
    "Jesper Axelsson <jesperaxe@gmail.com>",
    "Austin Bonander <austin.bonander@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "sqlx"
description = "Temporary fork of sqlx-cli with unreleased fixes. Command-line utility for SQLx, the Rust SQL toolkit."
homepage = "https://github.com/launchbadge/sqlx"
readme = "README.md"
keywords = [
    "database",
    "postgres",
    "database-management",
    "migration",
]
categories = [
    "database",
    "command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/launchbadge/sqlx"

[features]
_sqlite = []
completions = ["dep:clap_complete"]
default = [
    "postgres",
    "sqlite",
    "mysql",
    "native-tls",
    "completions",
    "sqlx-toml",
]
mysql = ["sqlx/mysql"]
native-tls = ["sqlx/tls-native-tls"]
openssl-vendored = ["openssl/vendored"]
postgres = ["sqlx/postgres"]
rustls = ["sqlx/tls-rustls"]
sqlite = [
    "sqlx/sqlite",
    "_sqlite",
]
sqlite-unbundled = [
    "sqlx/sqlite-unbundled",
    "_sqlite",
]
sqlx-toml = ["sqlx/sqlx-toml"]

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

[[bin]]
name = "cargo-sqlx"
path = "src/bin/cargo-sqlx.rs"

[[bin]]
name = "sqlx"
path = "src/bin/sqlx.rs"

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

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

[dependencies.anyhow]
version = "1.0.52"

[dependencies.backoff]
version = "0.4.0"
features = [
    "futures",
    "tokio",
]

[dependencies.cargo_metadata]
version = "0.18.1"

[dependencies.chrono]
version = "0.4.19"
features = ["clock"]
default-features = false

[dependencies.clap]
version = "4.3.10"
features = [
    "derive",
    "env",
    "wrap_help",
]

[dependencies.clap_complete]
version = "4.3.1"
optional = true

[dependencies.console]
version = "0.15.0"

[dependencies.dialoguer]
version = "0.11"
default-features = false

[dependencies.dotenvy]
version = "0.15.0"

[dependencies.filetime]
version = "0.2"

[dependencies.futures-util]
version = "0.3.19"
features = ["alloc"]

[dependencies.glob]
version = "0.3.0"

[dependencies.openssl]
version = "0.10.38"
optional = true

[dependencies.serde_json]
version = "1.0.73"

[dependencies.sqlx]
version = "=0.9.0-msqlx.1"
features = [
    "runtime-tokio",
    "migrate",
    "any",
]
default-features = false
package = "msqlx"

[dependencies.tokio]
version = "1.15.0"
features = [
    "macros",
    "rt",
    "rt-multi-thread",
    "signal",
]

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

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

[lints.clippy]
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_sign_loss = "deny"
disallowed_methods = "deny"