From 0607f3dfa695ca177aa599326cac6b6785e0b28f Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Wed, 6 May 2026 22:46:23 -0400 Subject: [PATCH] Declare dependency as workspace = true --- .../wasm32_without_js/rustpython-without-js/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_projects/wasm32_without_js/rustpython-without-js/Cargo.toml b/example_projects/wasm32_without_js/rustpython-without-js/Cargo.toml index f987fe94a24..d6c0dbf1f80 100644 --- a/example_projects/wasm32_without_js/rustpython-without-js/Cargo.toml +++ b/example_projects/wasm32_without_js/rustpython-without-js/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" crate-type = ["cdylib"] [dependencies] -getrandom = "0.3" +getrandom = { workspace = true } rustpython-vm = { path = "../../../crates/vm", default-features = false, features = ["compiler"] } [workspace]