aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMathias <[email protected]>2022-10-24 12:14:26 +0200
committerMathias <[email protected]>2022-10-24 12:14:26 +0200
commit8d809c96ecf2fabf77f0fb72f2a59acd18306bf2 (patch)
treeda3e28e491bbaadbc448b9a021291e2164b7531e /tests
parent7152031229da19005e5b0d52c8c72d359d3e0daa (diff)
parentce1cba761c2942b7faa27f4098487c6468784729 (diff)
Merge branch 'master' of https://github.com/embassy-rs/embassy into embassy-rp/flash
Diffstat (limited to 'tests')
-rw-r--r--tests/rp/Cargo.toml5
-rw-r--r--tests/stm32/Cargo.toml5
2 files changed, 6 insertions, 4 deletions
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 503373759..d6770d6e9 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -2,6 +2,7 @@
2edition = "2021" 2edition = "2021"
3name = "embassy-rp-tests" 3name = "embassy-rp-tests"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0"
5 6
6[dependencies] 7[dependencies]
7embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] } 8embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
@@ -16,8 +17,8 @@ defmt-rtt = "0.3.0"
16cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 17cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
17cortex-m-rt = "0.7.0" 18cortex-m-rt = "0.7.0"
18embedded-hal = "0.2.6" 19embedded-hal = "0.2.6"
19embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } 20embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.9" }
20embedded-hal-async = { version = "0.1.0-alpha.1" } 21embedded-hal-async = { version = "=0.1.0-alpha.2" }
21panic-probe = { version = "0.3.0", features = ["print-defmt"] } 22panic-probe = { version = "0.3.0", features = ["print-defmt"] }
22futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 23futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
23embedded-io = { version = "0.3.0", features = ["async"] } 24embedded-io = { version = "0.3.0", features = ["async"] }
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index d9cd3f120..bebbf557e 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -2,6 +2,7 @@
2edition = "2021" 2edition = "2021"
3name = "embassy-stm32-tests" 3name = "embassy-stm32-tests"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0"
5 6
6[features] 7[features]
7stm32f103c8 = ["embassy-stm32/stm32f103c8"] # Blue Pill 8stm32f103c8 = ["embassy-stm32/stm32f103c8"] # Blue Pill
@@ -24,8 +25,8 @@ defmt-rtt = "0.3.0"
24cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } 25cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
25cortex-m-rt = "0.7.0" 26cortex-m-rt = "0.7.0"
26embedded-hal = "0.2.6" 27embedded-hal = "0.2.6"
27embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } 28embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.9" }
28embedded-hal-async = { version = "0.1.0-alpha.1" } 29embedded-hal-async = { version = "=0.1.0-alpha.2" }
29panic-probe = { version = "0.3.0", features = ["print-defmt"] } 30panic-probe = { version = "0.3.0", features = ["print-defmt"] }
30 31
31[profile.dev] 32[profile.dev]