From 37ad1ff38b5516545880069958200aec0be43d97 Mon Sep 17 00:00:00 2001 From: JMS55 <47158642+JMS55@users.noreply.github.com> Date: Tue, 18 Aug 2020 18:41:56 -0400 Subject: [PATCH] [rs] Shrink futures dependencies --- wgpu/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 159f22cefa..ac0fe414c1 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -37,7 +37,7 @@ version = "0.6" [dependencies] arrayvec = "0.5" -futures = "0.3" +futures = { version = "0.3", default-features = false, features = ["std"] } parking_lot = "0.11" raw-window-handle = "0.3" smallvec = "1" @@ -59,6 +59,7 @@ rand = { version = "0.7.2", features = ["wasm-bindgen"] } bytemuck = "1" noise = "0.6" ddsfile = "0.4" +futures = { version = "0.3", default-features = false, features = ["std", "executor"] } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.subscriber] package = "wgpu-subscriber"