From 890e93f367cebc3a93fccf89ee3d702ba416fe34 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 12 Jun 2021 00:50:36 +0200 Subject: [PATCH] UPdate smoltcp --- embassy-net/Cargo.toml | 2 +- examples/std/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index 5d391698..c64075b9 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml @@ -34,7 +34,7 @@ atomic-pool = "0.2.0" [dependencies.smoltcp] git = "https://github.com/smoltcp-rs/smoltcp" -rev = "ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff" +rev = "e4241510337e095b9d21136c5f58b2eaa1b78479" default-features = false features = [ "proto-ipv4", diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 22ffc893..46681485 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.0" embassy = { version = "0.1.0", path = "../../embassy", features = ["log"] } embassy-std = { version = "0.1.0", path = "../../embassy-std" } embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] } -smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff", default-features = false } +smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } async-io = "1.3.1" env_logger = "0.8.2"