aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-05-18 17:07:05 +0200
committerDario Nieuwenhuis <[email protected]>2021-05-18 17:07:05 +0200
commit773c3570e76ad6a6e2b8b8d4984cd658c2470843 (patch)
tree0a657baa64bff9c422f73b37c9a9fef15f86adc5
parent4eecb3cfa982abfd4fe97108f14d15236addb9b2 (diff)
Update deps
-rw-r--r--embassy-net/Cargo.toml2
-rw-r--r--embassy-net/src/lib.rs4
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" }
30generic-array = { version = "0.14.4", default-features = false } 30generic-array = { version = "0.14.4", default-features = false }
31stable_deref_trait = { version = "1.2.0", default-features = false } 31stable_deref_trait = { version = "1.2.0", default-features = false }
32futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]} 32futures = { version = "0.3.5", default-features = false, features = [ "async-await" ]}
33atomic-pool = "0.1.0" 33atomic-pool = "0.2.0"
34 34
35[dependencies.smoltcp] 35[dependencies.smoltcp]
36version = "0.7.0" 36version = "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.
8pub(crate) mod fmt; 4pub(crate) mod fmt;