diff --git a/crates/libs/registry/Cargo.toml b/crates/libs/registry/Cargo.toml index 1226675670..182b880a90 100644 --- a/crates/libs/registry/Cargo.toml +++ b/crates/libs/registry/Cargo.toml @@ -11,10 +11,6 @@ readme = "readme.md" categories = ["os::windows-apis"] exclude = ["tests"] -[features] -default = ["std"] -std = [] - [lints] workspace = true diff --git a/crates/libs/registry/src/lib.rs b/crates/libs/registry/src/lib.rs index aad2cb3a9a..759397acbf 100644 --- a/crates/libs/registry/src/lib.rs +++ b/crates/libs/registry/src/lib.rs @@ -2,7 +2,7 @@ Learn more about Rust for Windows here: */ -#![cfg_attr(all(not(test), not(feature = "std")), no_std)] +#![cfg_attr(not(test), no_std)] #[macro_use] extern crate alloc;