diff --git a/Cargo.lock b/Cargo.lock index 75f9b22c2a..7b5a629c8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6065,6 +6065,7 @@ dependencies = [ "postgres-types", "predicates", "proc-macro2", + "rand_core 0.5.1", "regex", "regex-automata 0.4.6", "regex-syntax 0.8.3", @@ -7146,11 +7147,11 @@ dependencies = [ [[package]] name = "postgres-protocol" -version = "0.6.6" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b6c5ef183cd3ab4ba005f1ca64c21e8bd97ce4699cfea9e8d9a2c4958ca520" +checksum = "acda0ebdebc28befa84bee35e651e4c5f09073d668c7aed4cf7e23c3cda84b23" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", "byteorder", "bytes", "fallible-iterator", @@ -7688,7 +7689,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf2890aaef0aa82719a50e808de264f9484b74b442e1a3a0e5ee38243ac40bdb" dependencies = [ - "rand_core 0.6.4", + "rand_core 0.5.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index fddf0ab37d..4770b9b7f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -431,7 +431,7 @@ percent-encoding = "2.3.1" peg = "0.8.4" pem = "3.0" petgraph = "0.6.5" -postgres-protocol = "0.6.6" +postgres-protocol = "0.6.7" predicates = "3.1.0" pretty_assertions = "1.4.0" pretty-hex = "0.4.1" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index dbb4a51c43..569372e056 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -85,6 +85,7 @@ petgraph = { version = "0.6.5", features = ["serde-1"] } postgres-types = { version = "0.2.6", default-features = false, features = ["with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] } predicates = { version = "3.1.0" } proc-macro2 = { version = "1.0.86" } +rand_core = { version = "0.5.1", default-features = false, features = ["std"] } regex = { version = "1.10.5" } regex-automata = { version = "0.4.6", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.3" } @@ -190,6 +191,7 @@ petgraph = { version = "0.6.5", features = ["serde-1"] } postgres-types = { version = "0.2.6", default-features = false, features = ["with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] } predicates = { version = "3.1.0" } proc-macro2 = { version = "1.0.86" } +rand_core = { version = "0.5.1", default-features = false, features = ["std"] } regex = { version = "1.10.5" } regex-automata = { version = "0.4.6", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.3" }