diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-05-18 17:07:05 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-05-18 17:07:05 +0200 |
| commit | 773c3570e76ad6a6e2b8b8d4984cd658c2470843 (patch) | |
| tree | 0a657baa64bff9c422f73b37c9a9fef15f86adc5 | |
| parent | 4eecb3cfa982abfd4fe97108f14d15236addb9b2 (diff) | |
Update deps
| -rw-r--r-- | embassy-net/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-net/src/lib.rs | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index b419250be..36f64dbd4 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml | |||
| @@ -30,7 +30,7 @@ as-slice = { version = "0.1.4" } | |||
| 30 | generic-array = { version = "0.14.4", default-features = false } | 30 | generic-array = { version = "0.14.4", default-features = false } |
| 31 | stable_deref_trait = { version = "1.2.0", default-features = false } | 31 | stable_deref_trait = { version = "1.2.0", default-features = false } |
| 32 | futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]} | 32 | futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]} |
| 33 | atomic-pool = "0.1.0" | 33 | atomic-pool = "0.2.0" |
| 34 | 34 | ||
| 35 | [dependencies.smoltcp] | 35 | [dependencies.smoltcp] |
| 36 | version = "0.7.0" | 36 | version = "0.7.0" |
diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs index 13f14b836..88dcf0aa5 100644 --- a/embassy-net/src/lib.rs +++ b/embassy-net/src/lib.rs | |||
| @@ -1,8 +1,4 @@ | |||
| 1 | #![cfg_attr(not(feature = "std"), no_std)] | 1 | #![cfg_attr(not(feature = "std"), no_std)] |
| 2 | #![feature(const_fn)] | ||
| 3 | #![feature(const_generics)] | ||
| 4 | #![feature(const_evaluatable_checked)] | ||
| 5 | #![allow(incomplete_features)] | ||
| 6 | 2 | ||
| 7 | // This mod MUST go first, so that the others see its macros. | 3 | // This mod MUST go first, so that the others see its macros. |
| 8 | pub(crate) mod fmt; | 4 | pub(crate) mod fmt; |
