diff --git a/Cargo.lock b/Cargo.lock index 4a17662d6..6745be652 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2730,9 +2730,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166" dependencies = [ "rand_chacha", "rand_core", diff --git a/pgrx-examples/arrays/Cargo.toml b/pgrx-examples/arrays/Cargo.toml index b798b0f96..a2a49cfed 100644 --- a/pgrx-examples/arrays/Cargo.toml +++ b/pgrx-examples/arrays/Cargo.toml @@ -31,7 +31,7 @@ pg_test = [] [dependencies] pgrx = { path = "../../pgrx" } serde = "1.0" -rand = "0.9.0" +rand = "0.9.3" [dev-dependencies] pgrx-tests = { path = "../../pgrx-tests" } diff --git a/pgrx-examples/bad_ideas/Cargo.toml b/pgrx-examples/bad_ideas/Cargo.toml index 8e3ae47d9..5e0fc0c02 100644 --- a/pgrx-examples/bad_ideas/Cargo.toml +++ b/pgrx-examples/bad_ideas/Cargo.toml @@ -30,7 +30,7 @@ pg_test = [] [dependencies] pgrx = { path = "../../pgrx" } -rand = "0.9.0" +rand = "0.9.3" ureq = "3.0.10" [dev-dependencies] diff --git a/pgrx-examples/numeric/Cargo.toml b/pgrx-examples/numeric/Cargo.toml index a1d13179a..c33b77601 100644 --- a/pgrx-examples/numeric/Cargo.toml +++ b/pgrx-examples/numeric/Cargo.toml @@ -31,7 +31,7 @@ pg_test = [] [dependencies] pgrx = { path = "../../pgrx" } -rand = "0.9.0" +rand = "0.9.3" [dev-dependencies] pgrx-tests = { path = "../../pgrx-tests" } diff --git a/pgrx-examples/srf/Cargo.toml b/pgrx-examples/srf/Cargo.toml index 3649fb6af..0f268105b 100644 --- a/pgrx-examples/srf/Cargo.toml +++ b/pgrx-examples/srf/Cargo.toml @@ -30,7 +30,7 @@ pg_test = [] [dependencies] pgrx = { path = "../../pgrx" } -rand = "0.9.0" +rand = "0.9.3" [dev-dependencies] pgrx-tests = { path = "../../pgrx-tests" } diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 14475df3a..42445b798 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -62,7 +62,7 @@ postgres = "0.19.10" proptest = { version = "1", optional = true } tempfile = "3.19.1" sysinfo = "0.34.2" -rand = "0.9.0" +rand = "0.9.3" [dependencies.pgrx] # Not unified in workspace due to default-features key path = "../pgrx" diff --git a/pgrx-unit-tests/Cargo.toml b/pgrx-unit-tests/Cargo.toml index c7cad7fa3..207f79b90 100644 --- a/pgrx-unit-tests/Cargo.toml +++ b/pgrx-unit-tests/Cargo.toml @@ -53,7 +53,7 @@ thiserror.workspace = true paste = "1" proptest = { version = "1", optional = true } -rand = "0.9.0" +rand = "0.9.3" [dependencies.pgrx] path = "../pgrx"