-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (35 loc) · 2.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
edition = "2021"
name = "stm32f4-embassy"
version = "0.1.0"
license = "MPL 2.0"
[dependencies]
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", rev= "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["nightly", "unstable-traits", "defmt", "stm32f429zi", "unstable-pac", "memory-x", "time-driver-any", "exti", "embedded-sdmmc", "chrono"] }
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["defmt"] }
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["nightly", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["defmt", "defmt-timestamp-uptime", "unstable-traits", "tick-hz-32_768"] }
embassy-usb = { git = "https://github.com/embassy-rs/embassy", rev = "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["defmt" ] }
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "584fc358fd533c3f3a832643bd6074bc00281e74", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "nightly"] }
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
cortex-m-rt = "0.7.0"
embedded-hal = "0.2.6"
embedded-io = { version = "0.6.0" }
embedded-io-async = { version = "0.6.0" }
panic-probe = { version = "0.3", features = ["print-defmt"] }
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
heapless = { version = "0.7.5", default-features = false }
nb = "1.0.0"
embedded-storage = "0.3.0"
micromath = "2.0.0"
static_cell = { version = "2", features = ["nightly"]}
chrono = { version = "^0.4", default-features = false}
embedded-graphics = "0.7.1"
ili9341 = "0.5.0"
display-interface = "0.4.1"
display-interface-spi = "0.4.1"
profont = "0.6.1"
dummy-pin = "0.1.1"
[profile.release]
debug = 2