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 6564704 commit 327e168Copy full SHA for 327e168
crates/five8_core/src/lib.rs
@@ -1,7 +1,8 @@
1
#![doc = include_str!("../README.md")]
2
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3
-// Support using the crate without the standard library.
4
-#![cfg_attr(not(feature = "std"), no_std)]
+#![no_std]
+#[cfg(feature = "std")]
5
+extern crate std;
6
7
#[cfg(feature = "std")]
8
use core::fmt;
0 commit comments