Disable not needed features in smoltcp

This commit is contained in:
Tilo Spannagel 2021-12-20 02:31:48 +00:00 committed by GitHub
parent af803ffc6a
commit f270e64a5c
2 changed files with 1 additions and 2 deletions

1
Cargo.lock generated
View file

@ -784,7 +784,6 @@ checksum = "d2308a1657c8db1f5b4993bab4e620bdbe5623bd81f254cf60326767bb243237"
dependencies = [
"bitflags",
"byteorder",
"libc",
"log",
"managed",
"rand_core",

View file

@ -11,7 +11,7 @@ clap = { version = "2.33", default-features = false, features = ["suggestions"]
log = "0.4"
pretty_env_logger = "0.4"
anyhow = "1"
smoltcp = "0.8.0"
smoltcp = { version = "0.8.0", default-features = false, features = ["std", "log", "medium-ip", "proto-ipv4", "proto-ipv6", "socket-udp", "socket-tcp"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3.17"
rand = "0.8.4"