mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
38 lines
995 B
TOML
38 lines
995 B
TOML
[package]
|
|
name = "cargo-sqlx"
|
|
version = "0.1.0"
|
|
description = "Simple postgres migrator without support for down migration"
|
|
authors = ["Jesper Axelsson <jesperaxe@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/launchbadge/sqlx"
|
|
repository = "https://github.com/launchbadge/sqlx"
|
|
keywords = ["database", "postgres", "database-management", "migration"]
|
|
categories = ["database", "command-line-utilities"]
|
|
|
|
[[bin]]
|
|
name = "sqlx"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
dotenv = "0.15"
|
|
tokio = { version = "0.2", features = ["macros"] }
|
|
sqlx = { version = "0.3", path = "..", default-features = false, features = [ "runtime-tokio" ] }
|
|
futures = "0.3"
|
|
structopt = "0.3"
|
|
chrono = "0.4"
|
|
anyhow = "1.0"
|
|
url = { version = "2.1.1", default-features = false }
|
|
async-trait = "0.1.30"
|
|
console = "0.10.0"
|
|
dialoguer = "0.5.0"
|
|
|
|
[features]
|
|
default = [ "postgres", "sqlite", "mysql" ]
|
|
|
|
|
|
# database
|
|
mysql = [ "sqlx/mysql" ]
|
|
postgres = [ "sqlx/postgres" ]
|
|
sqlite = [ "sqlx/sqlite" ]
|