We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88209c commit 09cff03Copy full SHA for 09cff03
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ on:
10
workflow_dispatch:
11
12
env:
13
- rust_toolchain: stable
+ rust_toolchain: nightly
14
15
jobs:
16
compile:
src/lib.rs
@@ -1,6 +1,11 @@
1
-#![cfg_attr(not(feature = "std"), no_std)]
+#![no_std]
2
#![allow(async_fn_in_trait)]
3
4
+#[cfg(feature = "std")]
5
+#[allow(unused_imports)]
6
+#[macro_use]
7
+extern crate std;
8
+
9
#[cfg(feature = "alloc")]
#[allow(unused_imports)]
#[macro_use]
0 commit comments