2020-03-29 07:39:59 +00:00
|
|
|
[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"
|
2020-03-29 07:51:42 +00:00
|
|
|
homepage = "https://github.com/launchbadge/sqlx"
|
|
|
|
repository = "https://github.com/launchbadge/sqlx"
|
2020-03-29 07:39:59 +00:00
|
|
|
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"] }
|
2020-04-07 22:55:06 +00:00
|
|
|
sqlx = { version = "0.3", path = "..", default-features = false, features = [ "runtime-tokio", "postgres" ] }
|
|
|
|
futures = "0.3"
|
2020-03-29 07:39:59 +00:00
|
|
|
structopt = "0.3"
|
|
|
|
chrono = "0.4"
|