From 551d944214de0bbe9ccf2a57cdbef590cff29de2 Mon Sep 17 00:00:00 2001 From: Joshua Groves Date: Tue, 25 Sep 2018 22:23:44 -0600 Subject: [PATCH] Fix build --- wgpu-native/src/registry.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wgpu-native/src/registry.rs b/wgpu-native/src/registry.rs index 3343cbef9..8a3a88caa 100644 --- a/wgpu-native/src/registry.rs +++ b/wgpu-native/src/registry.rs @@ -2,9 +2,10 @@ use std::marker::PhantomData; #[cfg(not(feature = "remote"))] use std::os::raw::c_void; - #[cfg(feature = "remote")] use parking_lot::{MappedMutexGuard, Mutex, MutexGuard}; +#[cfg(feature = "remote")] +use std::sync::Arc; #[cfg(feature = "remote")] use hal::backend::FastHashMap;