diff --git a/Cargo.lock b/Cargo.lock index 1f8ba4d..b02686b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2248,9 +2248,9 @@ dependencies = [ [[package]] name = "postgres-protocol" -version = "0.6.7" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acda0ebdebc28befa84bee35e651e4c5f09073d668c7aed4cf7e23c3cda84b23" +checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54" dependencies = [ "base64 0.22.1", "byteorder", @@ -2259,16 +2259,16 @@ dependencies = [ "hmac", "md-5", "memchr", - "rand 0.8.5", + "rand 0.9.0", "sha2", "stringprep", ] [[package]] name = "postgres-types" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f66ea23a2d0e5734297357705193335e0a957696f34bed2f2faefacb2fec336f" +checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48" dependencies = [ "bytes", "fallible-iterator", @@ -3423,9 +3423,9 @@ dependencies = [ [[package]] name = "tokio-postgres" -version = "0.7.12" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b5d3742945bc7d7f210693b0c58ae542c6fd47b17adbbda0885f3dcb34a6bdb" +checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0" dependencies = [ "async-trait", "byteorder", @@ -3440,7 +3440,7 @@ dependencies = [ "pin-project-lite", "postgres-protocol", "postgres-types", - "rand 0.8.5", + "rand 0.9.0", "socket2", "tokio", "tokio-util", diff --git a/Cargo.toml b/Cargo.toml index 4d72e90..aa67446 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ predicates = "3.1.3" schemars = "0.8.21" testcontainers-modules = { version = "0.11.6", features = ["hashicorp_vault", "k3s", "postgres"] } tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } -tokio-postgres = "0.7.12" +tokio-postgres = "0.7.13" utilities = {path= "tests/utilities" } [build-dependencies]