diff options
| author | Gabriel Smith <[email protected]> | 2022-11-27 16:24:20 -0500 |
|---|---|---|
| committer | Gabriel Smith <[email protected]> | 2022-11-27 16:24:20 -0500 |
| commit | d438d1b685acb41b29d01c64bc422836760cb3de (patch) | |
| tree | cfc76cec8616f6604c73dace99c83ce5d7523e97 /embassy-sync/src/lib.rs | |
| parent | 805b885de62f7028ffcec86b00014bf72749a871 (diff) | |
sync: Fix nightly feature compilation after upgrade to embedded-io 0.4.0
Diffstat (limited to 'embassy-sync/src/lib.rs')
| -rw-r--r-- | embassy-sync/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-sync/src/lib.rs b/embassy-sync/src/lib.rs index 80bb907a3..f9435ecff 100644 --- a/embassy-sync/src/lib.rs +++ b/embassy-sync/src/lib.rs | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)] | 1 | #![cfg_attr(not(any(feature = "std", feature = "wasm")), no_std)] |
| 2 | #![cfg_attr(feature = "nightly", feature(type_alias_impl_trait))] | 2 | #![cfg_attr(feature = "nightly", feature(async_fn_in_trait, impl_trait_projections))] |
| 3 | #![cfg_attr(feature = "nightly", allow(incomplete_features))] | ||
| 3 | #![allow(clippy::new_without_default)] | 4 | #![allow(clippy::new_without_default)] |
| 4 | #![doc = include_str!("../README.md")] | 5 | #![doc = include_str!("../README.md")] |
| 5 | #![warn(missing_docs)] | 6 | #![warn(missing_docs)] |
