From 48d8666de002c7bfddbe85a2596f7748b4cc18b4 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Tue, 31 Jan 2023 12:28:42 +0100 Subject: [PATCH] Remove some workspace inheritence from wgpu-types/Cargo.toml. (#3439) Unfortunately that breaks the cargo vendor stuff in mozilla-central even though it is part of a build configuration that m-c does not use. --- wgpu-types/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index f4959b684f..32446f6b58 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -25,8 +25,8 @@ bitflags = "1" serde = { version = "1", features = ["serde_derive"], optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -js-sys.workspace = true -web-sys = { workspace = true, features = [ +js-sys = "0.3.60" +web-sys = { version = "0.3.60", features = [ "ImageBitmap", "HtmlVideoElement", "HtmlCanvasElement",