chore: bump versions of sqlx-* in dependencies

This commit is contained in:
Austin Bonander 2021-08-17 12:49:02 -07:00
parent 6bb1c716bd
commit 207e6db2ce
No known key found for this signature in database
GPG Key ID: 461F7F0F45383F2B
4 changed files with 6 additions and 6 deletions

View File

@ -132,8 +132,8 @@ bstr = ["sqlx-core/bstr"]
git2 = ["sqlx-core/git2"]
[dependencies]
sqlx-core = { version = "0.5.5", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5.5", path = "sqlx-macros", default-features = false, optional = true }
sqlx-core = { version = "0.5.6", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5.6", path = "sqlx-macros", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.31"

View File

@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
[dependencies]
dotenv = "0.15"
tokio = { version = "1.0.1", features = ["macros", "rt", "rt-multi-thread"] }
sqlx = { version = "0.5.5", path = "..", default-features = false, features = [
sqlx = { version = "0.5.6", path = "..", default-features = false, features = [
"runtime-async-std-native-tls",
"migrate",
"any",

View File

@ -101,7 +101,7 @@ offline = ["serde", "either/serde"]
[dependencies]
ahash = "0.7.2"
atoi = "0.4.0"
sqlx-rt = { path = "../sqlx-rt", version = "0.5.5" }
sqlx-rt = { path = "../sqlx-rt", version = "0.5.6" }
base64 = { version = "0.13.0", default-features = false, optional = true, features = ["std"] }
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.8.1", optional = true }

View File

@ -85,8 +85,8 @@ heck = "0.3.1"
either = "1.5.3"
once_cell = "1.5.2"
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx-core = { version = "0.5.5", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.5.5", default-features = false, path = "../sqlx-rt" }
sqlx-core = { version = "0.5.6", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.5.6", default-features = false, path = "../sqlx-rt" }
serde = { version = "1.0.111", features = ["derive"], optional = true }
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
sha2 = { version = "0.9.1", optional = true }