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