aboutsummaryrefslogtreecommitdiff
path: root/embassy-net
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-02-07 18:15:26 +0100
committerDario Nieuwenhuis <[email protected]>2023-02-07 18:15:26 +0100
commit102b2e52cb0b98a533ec12a1c0b93d8dc9e4f826 (patch)
treea7a06b799a1989a1576596b57bac7e1602cd7a76 /embassy-net
parentdadd6aafe9d5239b5f9718f446649a1de0d0cbcd (diff)
net: use released smoltcp 0.9.0
Diffstat (limited to 'embassy-net')
-rw-r--r--embassy-net/Cargo.toml17
1 files changed, 6 insertions, 11 deletions
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml
index 15cbb5954..4ec340b7a 100644
--- a/embassy-net/Cargo.toml
+++ b/embassy-net/Cargo.toml
@@ -33,6 +33,12 @@ medium-ip = ["smoltcp/medium-ip"]
33defmt = { version = "0.3", optional = true } 33defmt = { version = "0.3", optional = true }
34log = { version = "0.4.14", optional = true } 34log = { version = "0.4.14", optional = true }
35 35
36smoltcp = { version = "0.9.0", default-features = false, features = [
37 "proto-ipv4",
38 "socket",
39 "async",
40]}
41
36embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver" } 42embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver" }
37embassy-time = { version = "0.1.0", path = "../embassy-time" } 43embassy-time = { version = "0.1.0", path = "../embassy-time" }
38embassy-sync = { version = "0.1.0", path = "../embassy-sync" } 44embassy-sync = { version = "0.1.0", path = "../embassy-sync" }
@@ -47,14 +53,3 @@ futures = { version = "0.3.17", default-features = false, features = [ "async-aw
47atomic-pool = "1.0" 53atomic-pool = "1.0"
48embedded-nal-async = { version = "0.3.0", optional = true } 54embedded-nal-async = { version = "0.3.0", optional = true }
49atomic-polyfill = { version = "1.0" } 55atomic-polyfill = { version = "1.0" }
50
51[dependencies.smoltcp]
52version = "0.8.0"
53git = "https://github.com/smoltcp-rs/smoltcp"
54rev = "5740b765749b95c18aace5de8dc21cab75ba33d4"
55default-features = false
56features = [
57 "proto-ipv4",
58 "socket",
59 "async",
60]