aboutsummaryrefslogtreecommitdiff
path: root/examples/std
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-17 17:05:37 +0000
committerGitHub <[email protected]>2022-08-17 17:05:37 +0000
commitd881f3ad9186cf3279aa1ba27093bad94035c186 (patch)
treee9d4cf483195fce6c8c34c514fc9a5e338771ce9 /examples/std
parent16d0ae76782475c0f759c3310e068507a0a9f8ab (diff)
parent67edea41686084a444e1455d17d5482b10c54abd (diff)
Merge #901
901: Update to critical-section 1.0, atomic-polyfill 1.0 r=Dirbaio a=Dirbaio TODO - [x] Wait for cortex-m 0.7.6 release https://github.com/rust-embedded/cortex-m/pull/449 - [x] ~~Wait for defmt-rtt 0.4 release https://github.com/knurling-rs/defmt/pull/689~~ we're still going to use defmt 0.3 for now, which will use the `critical-section` 0.2 default impl, which works. - [x] Wait for critical-secton `std` impl https://github.com/rust-embedded/critical-section/pull/22 Co-authored-by: Dario Nieuwenhuis <[email protected]>
Diffstat (limited to 'examples/std')
-rw-r--r--examples/std/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 427b93438..47933894a 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -8,6 +8,7 @@ embassy-util = { version = "0.1.0", path = "../../embassy-util", features = ["lo
8embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["log", "std", "time", "nightly"] } 8embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["log", "std", "time", "nightly"] }
9embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "tcp", "udp", "dhcpv4", "pool-16"] } 9embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "tcp", "udp", "dhcpv4", "pool-16"] }
10embedded-io = { version = "0.3.0", features = ["async", "std", "futures"] } 10embedded-io = { version = "0.3.0", features = ["async", "std", "futures"] }
11critical-section = { version = "1.1", features = ["std"] }
11 12
12async-io = "1.6.0" 13async-io = "1.6.0"
13env_logger = "0.9.0" 14env_logger = "0.9.0"