This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 42235b4 chore(deps): Update sqlx requirement from 0.7.4 to 0.8.0
(#537)
42235b4 is described below
commit 42235b44237d1cf56921383bab61230e0b77673a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Aug 13 22:05:30 2024 +0800
chore(deps): Update sqlx requirement from 0.7.4 to 0.8.0 (#537)
Updates the requirements on [sqlx](https://github.com/launchbadge/sqlx) to
permit the latest version.
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](https://github.com/launchbadge/sqlx/compare/v0.7.4...v0.8.0)
---
updated-dependencies:
- dependency-name: sqlx
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
crates/catalog/sql/Cargo.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/catalog/sql/Cargo.toml b/crates/catalog/sql/Cargo.toml
index 5d14535..b90423f 100644
--- a/crates/catalog/sql/Cargo.toml
+++ b/crates/catalog/sql/Cargo.toml
@@ -31,13 +31,13 @@ keywords = ["iceberg", "sql", "catalog"]
[dependencies]
async-trait = { workspace = true }
iceberg = { workspace = true }
-sqlx = { version = "0.7.4", features = ["any"], default-features = false }
+sqlx = { version = "0.8.0", features = ["any"], default-features = false }
typed-builder = { workspace = true }
[dev-dependencies]
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
itertools = { workspace = true }
regex = "1.10.5"
-sqlx = { version = "0.7.4", features = ["tls-rustls", "runtime-tokio", "any",
"sqlite", "migrate"], default-features = false }
+sqlx = { version = "0.8.0", features = ["tls-rustls", "runtime-tokio", "any",
"sqlite", "migrate"], default-features = false }
tempfile = { workspace = true }
tokio = { workspace = true }