We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c5470 commit 78fa885Copy full SHA for 78fa885
packages/std/src/prelude.rs
@@ -4,3 +4,6 @@ pub use alloc::string::{String, ToString};
4
pub use alloc::vec;
5
pub use alloc::vec::Vec;
6
pub use core::option::Option::{self, None, Some};
7
+
8
+#[cfg(not(feature = "std"))]
9
+core::compile_error!("Please enable `cosmwasm-std`'s `std` feature, as we might move existing functionality to that feature in the future.");
0 commit comments