diff --git a/core/Cargo.toml b/core/Cargo.toml index c23a72e..fbeeffc 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bp3d-os" -version = "1.0.0" +version = "1.0.1" authors = ["Yuri Edward "] edition = "2021" description = "Operating System tools designed for BlockProject3D" diff --git a/core/src/lib.rs b/core/src/lib.rs index 927239b..7c94c41 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -55,5 +55,5 @@ pub mod module; #[cfg(feature = "shell")] pub mod shell; -#[cfg(target_vendor = "apple")] +#[cfg(all(feature = "objc2", target_vendor = "apple"))] mod apple_helpers; diff --git a/module_test/test_mod/Cargo.toml b/module_test/test_mod/Cargo.toml index 59ff1dc..6653a22 100644 --- a/module_test/test_mod/Cargo.toml +++ b/module_test/test_mod/Cargo.toml @@ -11,5 +11,5 @@ crate-type = ["rlib", "cdylib"] bp3d-os-build = { version = "1.0.0", path = "../../build" } [dependencies] -bp3d-os = { version = "1.0.0", path = "../../core", features = ["module"] } +bp3d-os = { version = "1.0.1", path = "../../core", features = ["module"] } bp3d-debug = "1.0.0"