-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1.02 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
[package]
authors = ["janjongen <[email protected]>"]
edition = "2021"
readme = "README.md"
name = "mxaz3166-board"
version = "0.1.0"
description = "An mxaz3166 boards support package (BSP)"
license = "MIT OR Apache-2.0"
keywords = ["embedded", "async", "stm32"]
categories = ["embedded", "hardware-support", "no-std"]
repository = "https://github.com/todo"
[dependencies]
heapless = "0.7"
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.3"
static_cell = "1"
stm32f4xx-hal = { version = "0.22.0", features = ["stm32f412"] }
defmt = "0.3"
defmt-rtt = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }
critical-section = "1.1.3"
ssd1306 = "0.9.0"
embedded-hal = "1.0.0"
embedded-graphics = "0.8.1"
# Git dependency for embedded-hal 1.0 compatibility
hts221 = { git = "https://github.com/Zelzahn/hts221.git" }
[profile.release]
codegen-units = 1 # better optimizations
debug = true # symbols are nice and they don't increase the size on Flash
lto = true # better optimizations