Bump smoltcp version

This commit is contained in:
Ruihan Li 2024-09-19 16:18:11 +08:00 committed by Tate, Hongliang Tian
parent 51334c4a36
commit b13a82dc61
2 changed files with 2 additions and 8 deletions

3
Cargo.lock generated
View File

@ -1338,14 +1338,13 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
[[package]] [[package]]
name = "smoltcp" name = "smoltcp"
version = "0.11.0" version = "0.11.0"
source = "git+https://github.com/smoltcp-rs/smoltcp?rev=dc08e0b#dc08e0b42e668c331bb2b6f8d80016301d0efe03" source = "git+https://github.com/smoltcp-rs/smoltcp?rev=469dccd#469dccdbaece66696494f8540615152fc5123b17"
dependencies = [ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"byteorder", "byteorder",
"cfg-if", "cfg-if",
"defmt", "defmt",
"heapless", "heapless",
"log",
"managed", "managed",
] ]

View File

@ -8,17 +8,12 @@ edition = "2021"
[dependencies] [dependencies]
keyable-arc = { path = "../keyable-arc" } keyable-arc = { path = "../keyable-arc" }
ostd = { path = "../../../ostd" } ostd = { path = "../../../ostd" }
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev = "dc08e0b", default-features = false, features = [ smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev = "469dccd", default-features = false, features = [
"alloc", "alloc",
"log", "log",
"medium-ethernet", "medium-ethernet",
"medium-ip", "medium-ip",
"proto-dhcpv4",
"proto-ipv4", "proto-ipv4",
"proto-igmp",
"socket-icmp",
"socket-udp", "socket-udp",
"socket-tcp", "socket-tcp",
"socket-raw",
"socket-dhcpv4",
] } ] }