chore: prepare sqlx v0.4.0-beta.1 and sqlx-cli v0.1.0-beta.1

This commit is contained in:
Ryan Leckey 2020-07-27 01:43:02 -07:00
parent 41694f7e7c
commit 22f1f93b79
6 changed files with 16 additions and 16 deletions

8
Cargo.lock generated
View file

@ -2376,7 +2376,7 @@ dependencies = [
[[package]]
name = "sqlx"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
dependencies = [
"anyhow",
"async-std",
@ -2409,7 +2409,7 @@ dependencies = [
[[package]]
name = "sqlx-cli"
version = "0.1.0-pre"
version = "0.1.0-beta.1"
dependencies = [
"anyhow",
"async-trait",
@ -2431,7 +2431,7 @@ dependencies = [
[[package]]
name = "sqlx-core"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
dependencies = [
"atoi",
"base64 0.12.3",
@ -2560,7 +2560,7 @@ dependencies = [
[[package]]
name = "sqlx-macros"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
dependencies = [
"dotenv",
"either",

View file

@ -16,7 +16,7 @@ members = [
[package]
name = "sqlx"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
@ -75,8 +75,8 @@ json = [ "sqlx-core/json", "sqlx-macros/json" ]
time = [ "sqlx-core/time", "sqlx-macros/time" ]
[dependencies]
sqlx-core = { version = "0.4.0-pre", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.4.0-pre", path = "sqlx-macros", default-features = false, optional = true }
sqlx-core = { version = "=0.4.0-beta.1", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "=0.4.0-beta.1", path = "sqlx-macros", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.31"

View file

@ -16,8 +16,8 @@ postgres = ["sqlx/postgres"]
criterion = "0.3.3"
dotenv = "0.15.0"
once_cell = "1.4"
sqlx = { version = "0.4.0-pre", path = "../", default-features = false }
sqlx-rt = { version = "0.1.0-pre", path = "../sqlx-rt", default-features = false }
sqlx = { version = "0.4.0-beta.1", path = "../", default-features = false }
sqlx-rt = { version = "0.1.1", path = "../sqlx-rt", default-features = false }
[[bench]]
name = "pg_pool"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-cli"
version = "0.1.0-pre"
version = "0.1.0-beta.1"
description = "Command-line utility for SQLx, the Rust SQL toolkit."
edition = "2018"
readme = "README.md"
@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
[dependencies]
dotenv = "0.15"
tokio = { version = "0.2", features = ["macros"] }
sqlx = { version = "0.4.0-pre", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] }
sqlx = { version = "0.4.0-beta.1", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] }
futures = "0.3"
clap = "3.0.0-beta.1"
chrono = "0.4"

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-core"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
repository = "https://github.com/launchbadge/sqlx"
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
@ -40,7 +40,7 @@ offline = [ "serde", "either/serde" ]
[dependencies]
atoi = "0.3.2"
sqlx-rt = { path = "../sqlx-rt", version = "0.1.0-pre" }
sqlx-rt = { path = "../sqlx-rt", version = "0.1.1" }
base64 = { version = "0.12.1", default-features = false, optional = true, features = [ "std" ] }
bigdecimal_ = { version = "0.1.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.6.0", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "sqlx-macros"
version = "0.4.0-pre"
version = "0.4.0-beta.1"
repository = "https://github.com/launchbadge/sqlx"
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
@ -49,8 +49,8 @@ hex = { version = "0.4.2", optional = true }
heck = "0.3.1"
either = "1.5.3"
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx-core = { version = "0.4.0-pre", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.1.0-pre", default-features = false, path = "../sqlx-rt" }
sqlx-core = { version = "0.4.0-beta.1", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.1.1", default-features = false, path = "../sqlx-rt" }
serde = { version = "1.0.111", optional = true }
serde_json = { version = "1.0.30", features = [ "preserve_order" ], optional = true }
sha2 = { version = "0.9.1", optional = true }