diff --git a/Cargo.lock b/Cargo.lock index abf9368d3e4..189ad648cbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3780,11 +3780,10 @@ dependencies = [ [[package]] name = "postgres-openssl" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de0ea6504e07ca78355a6fb88ad0f36cafe9e696cbc6717f16a207f3a60be72" +checksum = "fb14e4bbc2c0b3d165bf30b79c7a9c10412dff9d98491ffdd64ed810ab891d21" dependencies = [ - "futures 0.3.30", "openssl", "tokio", "tokio-openssl", @@ -3793,27 +3792,27 @@ dependencies = [ [[package]] name = "postgres-protocol" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" +checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "byteorder", "bytes", "fallible-iterator 0.2.0", "hmac", "md-5", "memchr", - "rand 0.8.5", + "rand 0.9.0", "sha2", "stringprep", ] [[package]] name = "postgres-types" -version = "0.2.6" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d2234cdee9408b523530a9b6d2d6b373d1db34f6a8e51dc03ded1828d7fb67c" +checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48" dependencies = [ "bytes", "fallible-iterator 0.2.0", @@ -5440,9 +5439,9 @@ dependencies = [ [[package]] name = "tokio-postgres" -version = "0.7.10" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d340244b32d920260ae7448cb72b6e238bddc3d4f7603394e7dd46ed8e48f5b8" +checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0" dependencies = [ "async-trait", "byteorder", @@ -5457,7 +5456,7 @@ dependencies = [ "pin-project-lite", "postgres-protocol", "postgres-types", - "rand 0.8.5", + "rand 0.9.0", "socket2", "tokio", "tokio-util 0.7.11", diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index c95b3cb83a4..22bdd0e7c50 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -22,7 +22,7 @@ lru_time_cache = "0.11" maybe-owned = "0.3.4" postgres = "0.19.1" openssl = "0.10.72" -postgres-openssl = "0.5.0" +postgres-openssl = "0.5.1" rand = "0.8.4" serde = { workspace = true } serde_json = { workspace = true }