diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-09-03 17:00:58 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-09-03 17:00:58 +0200 |
| commit | de016e845655fe7a8637c9a545e4074e7bd6dbfc (patch) | |
| tree | 38c7413261ca5058c1d54810b142b7db09ad3ac4 /examples/stm32h7/src | |
| parent | 65bceafa6839b92dd5e4487485f687bdf4b42733 (diff) | |
Remove trait_alias, allow(incomplete_features).
trait_alias seems unused. no idea why it's there.
Diffstat (limited to 'examples/stm32h7/src')
| -rw-r--r-- | examples/stm32h7/src/bin/blinky.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/button_exti.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/dac.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/eth.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/rng.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/spi.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/spi_dma.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/usart.rs | 2 | ||||
| -rw-r--r-- | examples/stm32h7/src/bin/usart_dma.rs | 2 |
9 files changed, 0 insertions, 18 deletions
diff --git a/examples/stm32h7/src/bin/blinky.rs b/examples/stm32h7/src/bin/blinky.rs index 3784fba84..78edb5e27 100644 --- a/examples/stm32h7/src/bin/blinky.rs +++ b/examples/stm32h7/src/bin/blinky.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/button_exti.rs b/examples/stm32h7/src/bin/button_exti.rs index 49c23ca3b..2c4318d64 100644 --- a/examples/stm32h7/src/bin/button_exti.rs +++ b/examples/stm32h7/src/bin/button_exti.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/dac.rs b/examples/stm32h7/src/bin/dac.rs index e4c3a7312..4cd2f2cd1 100644 --- a/examples/stm32h7/src/bin/dac.rs +++ b/examples/stm32h7/src/bin/dac.rs | |||
| @@ -1,7 +1,5 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![allow(incomplete_features)] | ||
| 4 | #![feature(trait_alias)] | ||
| 5 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
diff --git a/examples/stm32h7/src/bin/eth.rs b/examples/stm32h7/src/bin/eth.rs index df4931455..acb6ef3a6 100644 --- a/examples/stm32h7/src/bin/eth.rs +++ b/examples/stm32h7/src/bin/eth.rs | |||
| @@ -1,7 +1,5 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![allow(incomplete_features)] | ||
| 4 | #![feature(trait_alias)] | ||
| 5 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
diff --git a/examples/stm32h7/src/bin/rng.rs b/examples/stm32h7/src/bin/rng.rs index 2dc8268b5..d64ad9bcd 100644 --- a/examples/stm32h7/src/bin/rng.rs +++ b/examples/stm32h7/src/bin/rng.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/spi.rs b/examples/stm32h7/src/bin/spi.rs index 5514b0d3d..0b375b0d0 100644 --- a/examples/stm32h7/src/bin/spi.rs +++ b/examples/stm32h7/src/bin/spi.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/spi_dma.rs b/examples/stm32h7/src/bin/spi_dma.rs index ea1605903..192e2e864 100644 --- a/examples/stm32h7/src/bin/spi_dma.rs +++ b/examples/stm32h7/src/bin/spi_dma.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/usart.rs b/examples/stm32h7/src/bin/usart.rs index 10bf7813d..95f0a8604 100644 --- a/examples/stm32h7/src/bin/usart.rs +++ b/examples/stm32h7/src/bin/usart.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
diff --git a/examples/stm32h7/src/bin/usart_dma.rs b/examples/stm32h7/src/bin/usart_dma.rs index eb71a72cf..d603347ac 100644 --- a/examples/stm32h7/src/bin/usart_dma.rs +++ b/examples/stm32h7/src/bin/usart_dma.rs | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #![no_std] | 1 | #![no_std] |
| 2 | #![no_main] | 2 | #![no_main] |
| 3 | #![feature(trait_alias)] | ||
| 4 | #![feature(type_alias_impl_trait)] | 3 | #![feature(type_alias_impl_trait)] |
| 5 | #![allow(incomplete_features)] | ||
| 6 | 4 | ||
| 7 | #[path = "../example_common.rs"] | 5 | #[path = "../example_common.rs"] |
| 8 | mod example_common; | 6 | mod example_common; |
