-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1 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
[workspace]
members = ["libs/aqi"]
[package]
authors = ["Niklas Anderson <[email protected]>"]
name = "quick_aqi"
version = "0.1.0"
edition = "2021"
[dependencies]
aqi = { path = "libs/aqi" }
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = { version = "0.7.5", features = ["device"] }
cortex-m-semihosting = "0.5.0"
defmt-rtt = "0.4.1"
embassy-executor = { version = "0.7.0", features = [
"arch-cortex-m",
"executor-thread",
"executor-interrupt",
"defmt",
] }
embassy-stm32 = { version = "0.2.0", features = [
"stm32f303vc",
"memory-x",
"time-driver-any",
"exti",
] }
libm = "0.2.11"
panic-probe = "0.3.2"
stm32-metapac = { version = "16.0.0", features = ["stm32f303vc"] }
[features]
default = ["memory-x"]
## Automatically generate `memory.x` file based on the memory map from [`stm32-metapac`](https://docs.rs/stm32-metapac/)
memory-x = []
## Tell the compiler which chip we're using
# by setting this feature flag
stm32f303vc = ["stm32-metapac/stm32f303vc"]