aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-08-23 01:06:14 +0200
committerDario Nieuwenhuis <[email protected]>2022-08-23 01:06:14 +0200
commit9218aff498aa4f9fca5d0aa3134fda6462801a2e (patch)
tree2e536283f7847cb00d6c689687a50ee4a0a3e86d /examples
parent945449b10fe815dd10875f55482d4777d6d801b7 (diff)
Update Embassy.
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/Cargo.toml20
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"
8cyw43 = { path = "../../", features = ["defmt"]} 8cyw43 = { path = "../../", features = ["defmt"]}
9embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } 9embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
10embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } 10embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
11embassy-util = { version = "0.1.0" }
12embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] } 11embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] }
13embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] } 12embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] }
14atomic-polyfill = "0.1.5" 13atomic-polyfill = "0.1.5"
@@ -29,19 +28,12 @@ heapless = "0.7.15"
29 28
30 29
31[patch.crates-io] 30[patch.crates-io]
32embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } 31embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
33embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } 32embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
34embassy-util = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } 33embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
35embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } 34embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
36embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "53fbd0efb3e77e1e3de948afde2b5bf1a5a9735f" } 35embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" }
37#embassy-executor = { path = "/home/dirbaio/embassy/embassy/embassy-executor" } 36embassy-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]
47debug = 2 39debug = 2