From 38ff68f7c984f933ac98d0b8f3fdc411851fc423 Mon Sep 17 00:00:00 2001 From: Raph Levien Date: Tue, 24 Oct 2023 10:10:11 -0700 Subject: [PATCH] Work around broken JS deps CI is failing because of some updated ecosystem crates that we don't care at all. This patch is a hammer to get it to stop failing, but is clearly not the right thing to do. --- examples/with_winit/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/with_winit/Cargo.toml b/examples/with_winit/Cargo.toml index 8b4028a8d..4b914d4a3 100644 --- a/examples/with_winit/Cargo.toml +++ b/examples/with_winit/Cargo.toml @@ -48,3 +48,6 @@ console_log = "1" wasm-bindgen-futures = "0.4.33" web-sys = { version = "0.3.60", features = [ "HtmlCollection", "Text" ] } getrandom = { version = "0.2.10", features = ["js"] } +rustls-webpki = "=0.101.4" +sct = "=0.7.0" +ureq = "=2.7.1"