summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: f4a3b838afe677af2f09902f4cd9d91f5def9839 (plain)
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
[package]
name = "scale-test"
version = "0.1.0"
edition = "2021"

[dependencies]
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.5"
critical-section = "1.2.0"
defmt = "0.3.10"
defmt-rtt = "0.4.1"
embassy-stm32 = { version = "0.4.0", features = ["defmt", "rt", "stm32f411ce", "unstable-pac", "memory-x", "exti"], default-features = false }
embedded-hal = { version = "1.0.0", features = ["defmt-03"] }
embedded-hal-async = { version = "1.0.0", features = ["defmt-03"] }
panic-probe = { version = "0.3.2", features = ["print-defmt"] }
rtic = { version = "2.1.2", features = ["thumbv7-backend"] }
rtic-monotonics = { version = "2.0.3", features = ["cortex-m-systick"] }

[patch.crates-io]
embassy-stm32 = { path = "/home/tk/Downloads/src/embassy/embassy-stm32" }

[profile.release]
lto = true
opt-level = "s"
incremental = false
codegen-units = 1
debug = true