diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-02-07 17:16:08 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-07 17:16:08 +0000 |
| commit | a7fa7d0de2fa7b8fab889879b6003df8427c6841 (patch) | |
| tree | a7a06b799a1989a1576596b57bac7e1602cd7a76 | |
| parent | dadd6aafe9d5239b5f9718f446649a1de0d0cbcd (diff) | |
| parent | 102b2e52cb0b98a533ec12a1c0b93d8dc9e4f826 (diff) | |
Merge #1201
1201: net: use released smoltcp 0.9.0 r=Dirbaio a=Dirbaio
bors r+
Co-authored-by: Dario Nieuwenhuis <[email protected]>
| -rw-r--r-- | embassy-net/Cargo.toml | 17 |
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"] | |||
| 33 | defmt = { version = "0.3", optional = true } | 33 | defmt = { version = "0.3", optional = true } |
| 34 | log = { version = "0.4.14", optional = true } | 34 | log = { version = "0.4.14", optional = true } |
| 35 | 35 | ||
| 36 | smoltcp = { version = "0.9.0", default-features = false, features = [ | ||
| 37 | "proto-ipv4", | ||
| 38 | "socket", | ||
| 39 | "async", | ||
| 40 | ]} | ||
| 41 | |||
| 36 | embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver" } | 42 | embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver" } |
| 37 | embassy-time = { version = "0.1.0", path = "../embassy-time" } | 43 | embassy-time = { version = "0.1.0", path = "../embassy-time" } |
| 38 | embassy-sync = { version = "0.1.0", path = "../embassy-sync" } | 44 | embassy-sync = { version = "0.1.0", path = "../embassy-sync" } |
| @@ -47,14 +53,3 @@ futures = { version = "0.3.17", default-features = false, features = [ "async-aw | |||
| 47 | atomic-pool = "1.0" | 53 | atomic-pool = "1.0" |
| 48 | embedded-nal-async = { version = "0.3.0", optional = true } | 54 | embedded-nal-async = { version = "0.3.0", optional = true } |
| 49 | atomic-polyfill = { version = "1.0" } | 55 | atomic-polyfill = { version = "1.0" } |
| 50 | |||
| 51 | [dependencies.smoltcp] | ||
| 52 | version = "0.8.0" | ||
| 53 | git = "https://github.com/smoltcp-rs/smoltcp" | ||
| 54 | rev = "5740b765749b95c18aace5de8dc21cab75ba33d4" | ||
| 55 | default-features = false | ||
| 56 | features = [ | ||
| 57 | "proto-ipv4", | ||
| 58 | "socket", | ||
| 59 | "async", | ||
| 60 | ] | ||
