From 1178a065cede7a7a6ccbf3747fc8bfa366d42247 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:50:44 +0000 Subject: [PATCH] chore(deps): update getrandom requirement from 0.3 to 0.4 Updates the requirements on [getrandom](https://github.com/rust-random/getrandom) to permit the latest version. - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/commits/v0.4.1) --- updated-dependencies: - dependency-name: getrandom dependency-version: 0.4.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/wasm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index d2ef8cbb..84b8eaad 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -22,7 +22,7 @@ console_error_panic_hook = { version = "0.1.6", optional = true } arrow-array.workspace = true arrow-schema.workspace = true arrow-wasm = { git = "https://github.com/kylebarron/arrow-wasm", rev = "874fc689cf1c871a1613bef175e5a9ac65cc8365" } -getrandom = { version = "0.3", features = ["wasm_js"] } +getrandom = { version = "0.4", features = ["wasm_js"] } serde.workspace = true serde-wasm-bindgen = "0.6.5" stac = { version = "0.16.5", path = "../core", features = ["geoparquet"] }