aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-06-12 00:50:36 +0200
committerDario Nieuwenhuis <[email protected]>2021-06-12 00:50:36 +0200
commit890e93f367cebc3a93fccf89ee3d702ba416fe34 (patch)
treeb815f949670e8e740d79657ca4c091dd37bf6948
parentdef8870cbb5574a6ae53233602d1bcc9f04590ba (diff)
UPdate smoltcp
-rw-r--r--embassy-net/Cargo.toml2
-rw-r--r--examples/std/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml
index 5d391698c..c64075b93 100644
--- a/embassy-net/Cargo.toml
+++ b/embassy-net/Cargo.toml
@@ -34,7 +34,7 @@ atomic-pool = "0.2.0"
34 34
35[dependencies.smoltcp] 35[dependencies.smoltcp]
36git = "https://github.com/smoltcp-rs/smoltcp" 36git = "https://github.com/smoltcp-rs/smoltcp"
37rev = "ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff" 37rev = "e4241510337e095b9d21136c5f58b2eaa1b78479"
38default-features = false 38default-features = false
39features = [ 39features = [
40 "proto-ipv4", 40 "proto-ipv4",
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 22ffc8937..466814850 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -8,7 +8,7 @@ version = "0.1.0"
8embassy = { version = "0.1.0", path = "../../embassy", features = ["log"] } 8embassy = { version = "0.1.0", path = "../../embassy", features = ["log"] }
9embassy-std = { version = "0.1.0", path = "../../embassy-std" } 9embassy-std = { version = "0.1.0", path = "../../embassy-std" }
10embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } 10embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] }
11smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff", default-features = false } 11smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false }
12 12
13async-io = "1.3.1" 13async-io = "1.3.1"
14env_logger = "0.8.2" 14env_logger = "0.8.2"