Skip to content

Commit fb4b5dc

Browse files
committed
0.6.44
1 parent 5ccc9dd commit fb4b5dc

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020

2121
[package]
2222
name = "sqlx-oldapi"
23-
version = "0.6.43"
23+
version = "0.6.44"
2424
license = "MIT OR Apache-2.0"
2525
readme = "README.md"
2626
repository = "https://github.com/lovasoa/sqlx"
@@ -143,8 +143,8 @@ bstr = ["sqlx-core/bstr"]
143143
git2 = ["sqlx-core/git2"]
144144

145145
[dependencies]
146-
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.43", path = "sqlx-core", default-features = false }
147-
sqlx-macros = { package = "sqlx-macros-oldapi", version = "0.6.43", path = "sqlx-macros", default-features = false, optional = true }
146+
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.44", path = "sqlx-core", default-features = false }
147+
sqlx-macros = { package = "sqlx-macros-oldapi", version = "0.6.44", path = "sqlx-macros", default-features = false, optional = true }
148148

149149
[dev-dependencies]
150150
anyhow = "1.0.52"

examples/postgres/axum-social-with-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
# Primary crates
1010
axum = { version = "0.5.13", features = ["macros"] }
11-
sqlx = { package = "sqlx-oldapi", version = "0.6.43", path = "../../../", features = ["runtime-tokio-rustls", "postgres", "time", "uuid"] }
11+
sqlx = { package = "sqlx-oldapi", version = "0.6.44", path = "../../../", features = ["runtime-tokio-rustls", "postgres", "time", "uuid"] }
1212
tokio = { version = "1.20.1", features = ["rt-multi-thread", "macros"] }
1313

1414
# Important secondary crates

sqlx-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-cli"
3-
version = "0.6.43"
3+
version = "0.6.44"
44
description = "Command-line utility for SQLx, the Rust SQL toolkit."
55
edition = "2021"
66
readme = "README.md"

sqlx-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core-oldapi"
3-
version = "0.6.43"
3+
version = "0.6.44"
44
repository = "https://github.com/lovasoa/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -103,7 +103,7 @@ offline = ["serde", "either/serde"]
103103
paste = "1.0.6"
104104
ahash = "0.8.3"
105105
atoi = "2.0.0"
106-
sqlx-rt = { path = "../sqlx-rt", version = "0.6.43", package = "sqlx-rt-oldapi" }
106+
sqlx-rt = { path = "../sqlx-rt", version = "0.6.44", package = "sqlx-rt-oldapi" }
107107
base64 = { version = "0.22", default-features = false, optional = true, features = ["std"] }
108108
bigdecimal_ = { version = "0.4.1", optional = true, package = "bigdecimal" }
109109
rust_decimal = { version = "1.19.0", optional = true }

sqlx-macros/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros-oldapi"
3-
version = "0.6.43"
3+
version = "0.6.44"
44
repository = "https://github.com/lovasoa/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -75,8 +75,8 @@ heck = { version = "0.5" }
7575
either = "1.6.1"
7676
once_cell = "1.9.0"
7777
proc-macro2 = { version = "1.0.36", default-features = false }
78-
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.43", default-features = false, features = ["any", "aws_lc_rs", "tls12"], path = "../sqlx-core" }
79-
sqlx-rt = { version = "0.6.43", default-features = false, path = "../sqlx-rt", package = "sqlx-rt-oldapi", features = ["aws_lc_rs"] }
78+
sqlx-core = { package = "sqlx-core-oldapi", version = "0.6.44", default-features = false, features = ["any", "aws_lc_rs", "tls12"], path = "../sqlx-core" }
79+
sqlx-rt = { version = "0.6.44", default-features = false, path = "../sqlx-rt", package = "sqlx-rt-oldapi", features = ["aws_lc_rs"] }
8080
serde = { version = "1.0.132", features = ["derive"], optional = true }
8181
serde_json = { version = "1.0.73", optional = true }
8282
sha2 = { version = "0.10.0", optional = true }
@@ -93,4 +93,4 @@ features = ["full", "parsing", "printing", "derive", "clone-impls", "proc-macro"
9393
unexpected_cfgs = { level = "warn", check-cfg = [
9494
'cfg(procmacro2_semver_exempt)',
9595
'cfg(sqlx_macros_unstable)',
96-
] }
96+
] }

sqlx-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-rt-oldapi"
3-
version = "0.6.43"
3+
version = "0.6.44"
44
repository = "https://github.com/launchbadge/sqlx"
55
license = "MIT OR Apache-2.0"
66
description = "Runtime abstraction used by SQLx, the Rust SQL toolkit. Not intended to be used directly."

0 commit comments

Comments
 (0)