We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75580aa commit 81bc367Copy full SHA for 81bc367
embedded-can/src/lib.rs
@@ -2,6 +2,12 @@
2
3
#![warn(missing_docs)]
4
#![no_std]
5
+// disable warning for already-stabilized features.
6
+// Needed to pass CI, because we deny warnings.
7
+// We don't immediately remove them to not immediately break older nightlies.
8
+// When all features are stable, we'll remove them.
9
+#![cfg_attr(nightly, allow(stable_features, unknown_lints))]
10
+#![cfg_attr(nightly, feature(async_fn_in_trait, impl_trait_projections))]
11
#![allow(async_fn_in_trait)]
12
13
pub mod asynch;
0 commit comments