fix(redox): use lazy_cell feature on redox

This commit is contained in:
Jeremy Soller 2024-08-26 13:22:04 -06:00
parent 00f0699042
commit fdc04ddf12
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -2,6 +2,7 @@
// SPDX-License-Identifier: MPL-2.0
#![allow(clippy::module_name_repetitions)]
#![cfg_attr(target_os = "redox", feature(lazy_cell))]
#[cfg(all(feature = "wayland", feature = "winit"))]
compile_error!("cannot use `wayland` feature with `winit`");