revert formatting changes in Cargo.toml

This commit is contained in:
kbleeke 2023-03-21 19:30:45 +01:00
parent 3034e8fb45
commit f82f931dc2

View File

@ -6,30 +6,10 @@ edition = "2021"
[dependencies] [dependencies]
cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] } cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] }
embassy-executor = { version = "0.1.0", features = [ embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
"defmt", embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
"integrated-timers", embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio"] }
] } embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "unstable-traits", "nightly"] }
embassy-time = { version = "0.1.0", features = [
"defmt",
"defmt-timestamp-uptime",
] }
embassy-rp = { version = "0.1.0", features = [
"defmt",
"unstable-traits",
"nightly",
"unstable-pac",
"pio",
"time-driver",
] }
embassy-net = { version = "0.1.0", features = [
"defmt",
"tcp",
"dhcpv4",
"medium-ethernet",
"unstable-traits",
"nightly",
] }
atomic-polyfill = "0.1.5" atomic-polyfill = "0.1.5"
static_cell = "1.0" static_cell = "1.0"
@ -39,11 +19,7 @@ panic-probe = { version = "0.3", features = ["print-defmt"] }
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.0" cortex-m-rt = "0.7.0"
futures = { version = "0.3.17", default-features = false, features = [ futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
"async-await",
"cfg-target-has-atomic",
"unstable",
] }
pio-proc = "0.2" pio-proc = "0.2"
pio = "0.2.1" pio = "0.2.1"