aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h742/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32h742/Cargo.toml')
-rw-r--r--examples/stm32h742/Cargo.toml17
1 files changed, 8 insertions, 9 deletions
diff --git a/examples/stm32h742/Cargo.toml b/examples/stm32h742/Cargo.toml
index 067663538..c76340b5f 100644
--- a/examples/stm32h742/Cargo.toml
+++ b/examples/stm32h742/Cargo.toml
@@ -1,13 +1,12 @@
1[package] 1[package]
2edition = "2021" 2edition = "2021"
3name = "embassy-stm32f7-examples" 3name = "embassy-stm32h742-examples"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false 6publish = false
7 7
8[dependencies] 8[dependencies]
9# Change stm32f777zi to your chip name, if necessary. 9embassy-stm32 = { version = "0.4.0", path = "../../embassy-stm32", features = [
10embassy-stm32 = { version = "0.3.0", path = "../../embassy-stm32", features = [
11 "defmt", 10 "defmt",
12 "stm32h742vi", 11 "stm32h742vi",
13 "memory-x", 12 "memory-x",
@@ -15,30 +14,30 @@ embassy-stm32 = { version = "0.3.0", path = "../../embassy-stm32", features = [
15 "time-driver-any", 14 "time-driver-any",
16 "exti", 15 "exti",
17] } 16] }
18embassy-sync = { version = "0.7.1", path = "../../embassy-sync", features = [ 17embassy-sync = { version = "0.7.2", path = "../../embassy-sync", features = [
19 "defmt", 18 "defmt",
20] } 19] }
21embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = [ 20embassy-executor = { version = "0.9.0", path = "../../embassy-executor", features = [
22 "arch-cortex-m", 21 "arch-cortex-m",
23 "executor-thread", 22 "executor-thread",
24 "defmt", 23 "defmt",
25] } 24] }
26embassy-time = { version = "0.4.0", path = "../../embassy-time", features = [ 25embassy-time = { version = "0.5.0", path = "../../embassy-time", features = [
27 "defmt", 26 "defmt",
28 "defmt-timestamp-uptime", 27 "defmt-timestamp-uptime",
29 "tick-hz-32_768", 28 "tick-hz-32_768",
30] } 29] }
31embassy-net = { version = "0.7.0", path = "../../embassy-net", features = [ 30embassy-net = { version = "0.7.1", path = "../../embassy-net", features = [
32 "defmt", 31 "defmt",
33 "tcp", 32 "tcp",
34 "dhcpv4", 33 "dhcpv4",
35 "medium-ethernet", 34 "medium-ethernet",
36] } 35] }
37embedded-io-async = { version = "0.6.1" } 36embedded-io-async = { version = "0.6.1" }
38embassy-usb = { version = "0.5.0", path = "../../embassy-usb", features = [ 37embassy-usb = { version = "0.5.1", path = "../../embassy-usb", features = [
39 "defmt", 38 "defmt",
40] } 39] }
41embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 40embassy-futures = { version = "0.1.2", path = "../../embassy-futures" }
42 41
43defmt = "1.0.1" 42defmt = "1.0.1"
44defmt-rtt = "1.0.0" 43defmt-rtt = "1.0.0"