diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 002d0487..2e2f0bd1 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -7,7 +7,6 @@ version = "0.1.0" [dependencies] embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time"] } 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="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } async-io = "1.6.0" env_logger = "0.9.0" @@ -18,3 +17,8 @@ libc = "0.2.101" clap = { version = "3.0.0-beta.5", features = ["derive"] } rand_core = { version = "0.6.3", features = ["std"] } heapless = { version = "0.7.5", default-features = false } + +[dependencies.smoltcp] +git = "https://github.com/bobmcwhirter/smoltcp" +rev = "faf81d21daae16b650b16e59a8422a8283e8a302" +default-features = false diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml index ac46cd86..8d7710c4 100644 --- a/examples/stm32f7/Cargo.toml +++ b/examples/stm32f7/Cargo.toml @@ -29,8 +29,8 @@ critical-section = "0.2.3" [dependencies.smoltcp] -git = "https://github.com/smoltcp-rs/smoltcp" -rev = "e4241510337e095b9d21136c5f58b2eaa1b78479" +git = "https://github.com/bobmcwhirter/smoltcp" +rev = "faf81d21daae16b650b16e59a8422a8283e8a302" default-features = false features = [ "proto-ipv4",