From 6a8a0036dfcbd4557033d03d82e30f530000da7a Mon Sep 17 00:00:00 2001 From: Kirill Mikhailov Date: Wed, 8 Jan 2025 10:10:33 +0100 Subject: [PATCH] use `instability` instead of feature --- esp-hal/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/esp-hal/src/lib.rs b/esp-hal/src/lib.rs index f75e807909..772eaf2afb 100644 --- a/esp-hal/src/lib.rs +++ b/esp-hal/src/lib.rs @@ -154,17 +154,17 @@ pub use xtensa_lx_rt::{self, entry}; #[cfg(any(esp32, esp32s3))] pub use self::soc::cpu_control; #[cfg(efuse)] -#[cfg(feature = "unstable")] +#[instability::unstable] pub use self::soc::efuse; #[cfg(lp_core)] -#[cfg(feature = "unstable")] +#[instability::unstable] pub use self::soc::lp_core; pub use self::soc::peripherals; -#[cfg(feature = "unstable")] +#[instability::unstable] #[cfg(any(feature = "quad-psram", feature = "octal-psram"))] pub use self::soc::psram; #[cfg(ulp_riscv_core)] -#[cfg(feature = "unstable")] +#[instability::unstable] pub use self::soc::ulp_core; #[cfg(any(dport, hp_sys, pcr, system))]