aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkbleeke <[email protected]>2023-03-21 19:30:45 +0100
committerkbleeke <[email protected]>2023-03-21 19:30:45 +0100
commitf82f931dc2b8df2338fb8331ad27d667811e5c09 (patch)
tree60ece98a261784ecd4e1c775df115b996fdfff1e
parent3034e8fb458cae0ff84d1ca07b4a64bced815f0c (diff)
revert formatting changes in Cargo.toml
-rw-r--r--examples/rpi-pico-w/Cargo.toml34
1 files changed, 5 insertions, 29 deletions
diff --git a/examples/rpi-pico-w/Cargo.toml b/examples/rpi-pico-w/Cargo.toml
index 17b4214d8..4a531c88c 100644
--- a/examples/rpi-pico-w/Cargo.toml
+++ b/examples/rpi-pico-w/Cargo.toml
@@ -6,30 +6,10 @@ edition = "2021"
6 6
7[dependencies] 7[dependencies]
8cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] } 8cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] }
9embassy-executor = { version = "0.1.0", features = [ 9embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
10 "defmt", 10embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
11 "integrated-timers", 11embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio"] }
12] } 12embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "unstable-traits", "nightly"] }
13embassy-time = { version = "0.1.0", features = [
14 "defmt",
15 "defmt-timestamp-uptime",
16] }
17embassy-rp = { version = "0.1.0", features = [
18 "defmt",
19 "unstable-traits",
20 "nightly",
21 "unstable-pac",
22 "pio",
23 "time-driver",
24] }
25embassy-net = { version = "0.1.0", features = [
26 "defmt",
27 "tcp",
28 "dhcpv4",
29 "medium-ethernet",
30 "unstable-traits",
31 "nightly",
32] }
33atomic-polyfill = "0.1.5" 13atomic-polyfill = "0.1.5"
34static_cell = "1.0" 14static_cell = "1.0"
35 15
@@ -39,11 +19,7 @@ panic-probe = { version = "0.3", features = ["print-defmt"] }
39 19
40cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 20cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
41cortex-m-rt = "0.7.0" 21cortex-m-rt = "0.7.0"
42futures = { version = "0.3.17", default-features = false, features = [ 22futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
43 "async-await",
44 "cfg-target-has-atomic",
45 "unstable",
46] }
47pio-proc = "0.2" 23pio-proc = "0.2"
48pio = "0.2.1" 24pio = "0.2.1"
49 25