From d9127efb5600b07377dd8172e0922b399d445ace Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:05:43 +0000 Subject: [PATCH] build(deps): bump sea-query from 0.30.1 to 0.30.2 Bumps [sea-query](https://github.com/SeaQL/sea-query) from 0.30.1 to 0.30.2. - [Release notes](https://github.com/SeaQL/sea-query/releases) - [Changelog](https://github.com/SeaQL/sea-query/blob/master/CHANGELOG.md) - [Commits](https://github.com/SeaQL/sea-query/compare/0.30.1...0.30.2) --- updated-dependencies: - dependency-name: sea-query dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/storage-pg/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68e49c7e4..323f74424 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4616,9 +4616,9 @@ dependencies = [ [[package]] name = "sea-query" -version = "0.30.1" +version = "0.30.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28c05a5bf6403834be253489bbe95fa9b1e5486bc843b61f60d26b5c9c1e244b" +checksum = "fb3e6bba153bb198646c8762c48414942a38db27d142e44735a133cabddcc820" dependencies = [ "chrono", "inherent", diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index ee8f3e371..13d271b7b 100644 --- a/crates/storage-pg/Cargo.toml +++ b/crates/storage-pg/Cargo.toml @@ -10,7 +10,7 @@ repository.workspace = true [dependencies] async-trait = "0.1.73" sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "json", "uuid", "ipnetwork"] } -sea-query = { version = "0.30.1", features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"] } +sea-query = { version = "0.30.2", features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"] } sea-query-binder = { version = "0.5.0", features = ["sqlx-postgres", "with-uuid", "with-chrono", "postgres-array"] } chrono.workspace = true serde.workspace = true