diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-08-23 01:06:14 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-08-23 01:06:14 +0200 |
| commit | 9218aff498aa4f9fca5d0aa3134fda6462801a2e (patch) | |
| tree | 2e536283f7847cb00d6c689687a50ee4a0a3e86d /examples | |
| parent | 945449b10fe815dd10875f55482d4777d6d801b7 (diff) | |
Update Embassy.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rpi-pico-w/Cargo.toml | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/examples/rpi-pico-w/Cargo.toml b/examples/rpi-pico-w/Cargo.toml index 98a3d105d..53e72498b 100644 --- a/examples/rpi-pico-w/Cargo.toml +++ b/examples/rpi-pico-w/Cargo.toml | |||
| @@ -8,7 +8,6 @@ edition = "2021" | |||
| 8 | cyw43 = { path = "../../", features = ["defmt"]} | 8 | cyw43 = { path = "../../", features = ["defmt"]} |
| 9 | embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } | 9 | embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } |
| 10 | embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } | 10 | embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } |
| 11 | embassy-util = { version = "0.1.0" } | ||
| 12 | embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] } | 11 | embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] } |
| 13 | embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] } | 12 | embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] } |
| 14 | atomic-polyfill = "0.1.5" | 13 | atomic-polyfill = "0.1.5" |
| @@ -29,19 +28,12 @@ heapless = "0.7.15" | |||
| 29 | 28 | ||
| 30 | 29 | ||
| 31 | [patch.crates-io] | 30 | [patch.crates-io] |
| 32 | embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } | 31 | embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 33 | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } | 32 | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 34 | embassy-util = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } | 33 | embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 35 | embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } | 34 | embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 36 | embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } | 35 | embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 37 | #embassy-executor = { path = "/home/dirbaio/embassy/embassy/embassy-executor" } | 36 | embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } |
| 38 | #embassy-util = { path = "/home/dirbaio/embassy/embassy/embassy-util" } | ||
| 39 | #embassy-rp = { path = "/home/dirbaio/embassy/embassy/embassy-rp" } | ||
| 40 | #embassy-net = { path = "/home/dirbaio/embassy/embassy/embassy-net" } | ||
| 41 | #smoltcp = { path = "./smoltcp" } | ||
| 42 | |||
| 43 | #[patch."https://github.com/smoltcp-rs/smoltcp"] | ||
| 44 | #smoltcp = { path = "./smoltcp" } | ||
| 45 | 37 | ||
| 46 | [profile.dev] | 38 | [profile.dev] |
| 47 | debug = 2 | 39 | debug = 2 |
