Skip to content

Commit

Permalink
chore: bump versions of sqlx-* in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Aug 17, 2021
1 parent 6bb1c71 commit 207e6db
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion sqlx-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions sqlx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 207e6db

Please sign in to comment.