mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 05:10:03 -04:00
Use atomic_refcell instead of parking_lot for wasm32 targets (#1404)
Closes https://github.com/emilk/egui/issues/1401
This commit is contained in:
@@ -71,6 +71,5 @@ image = { version = "0.24", default-features = false, features = [
|
||||
"jpeg",
|
||||
"png",
|
||||
] }
|
||||
parking_lot = "0.12"
|
||||
poll-promise = "0.1"
|
||||
rfd = "0.8"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
use eframe::egui;
|
||||
|
||||
use parking_lot::Mutex;
|
||||
use egui::mutex::Mutex;
|
||||
use std::sync::Arc;
|
||||
|
||||
fn main() {
|
||||
|
||||
Reference in New Issue
Block a user