-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 922 Bytes
/
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
[package]
name = "nucleo-h723zg"
version = "0.1.0"
authors = ["James Logan <[email protected]>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "Example programs for nucleo-H723zg board"
keywords = ["arm", "cortex-m", "stm32h7xx", "hal"]
license = "0BSD"
repository = "https://github.com/jlogan03/nucleo-h723zg"
edition = "2021"
[dependencies]
cortex-m-rt = "0.7.3"
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"]}
embedded-hal = "0.2.7"
nb = "1.1.0"
stm32h7xx-hal = { version="0.14.0", features=["stm32h735"] }
cortex-m-rtic = "1.1.4"
panic-never = { version='0.1.0', optional=true }
[features]
# Bypass startup in order to do a test compilation
# to check for panic branches in the main loop
test = ["panic-never"]
[profile.dev]
debug = true
lto = true
opt-level = "s"
codegen-units = 1
[profile.release]
debug = false
lto = true
opt-level = "s"
codegen-units = 1