From edc2da5d9e566fd2a9e84eb5eb0620a311f291b7 Mon Sep 17 00:00:00 2001 From: jane400 Date: Wed, 28 Aug 2024 15:17:16 +0200 Subject: [PATCH] chore: mark packstation api as unstable --- libpaket/src/locker/mod.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libpaket/src/locker/mod.rs b/libpaket/src/locker/mod.rs index 991186a..398a62b 100644 --- a/libpaket/src/locker/mod.rs +++ b/libpaket/src/locker/mod.rs @@ -1,11 +1,20 @@ #[cfg(feature = "locker_ble")] +#[cfg(feature = "unstable")] mod command; #[cfg(feature = "locker_ble")] +#[cfg(feature = "unstable")] mod types; #[cfg(feature = "locker_ble")] +#[cfg(feature = "unstable")] pub use types::*; +#[cfg(feature = "locker_ble")] +#[cfg(feature = "unstable")] mod api; +#[cfg(feature = "locker_ble")] +#[cfg(feature = "unstable")] +pub use api::*; + pub mod crypto; pub(crate) mod utils;