mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
25 lines
792 B
TOML
25 lines
792 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", "postgres" ] }
|
|
futures = "0.3"
|
|
structopt = "0.3"
|
|
chrono = "0.4"
|
|
anyhow = "1.0"
|
|
url = { version = "2.1.1", default-features = false } |