forked from d6y/rust-brighton-embedded-day-5
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (29 loc) · 958 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
[package]
authors = ["Richard Dallaway <[email protected]>"]
edition = "2018"
readme = "README.md"
name = "blinky"
version = "0.1.0"
[dependencies]
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
cortex-m-semihosting = "0.3.5"
#panic-halt = "0.2.0"
panic-semihosting = "0.5.3"
#stm32f4xx-hal = { version = "0.8.3", features = ["stm32f411", "rt"]}
stm32f4xx-hal = { git = "https://github.com/stm32-rs/stm32f4xx-hal", rev = "d1123d896feabecb17148423e05a1495782484bd", features = ["stm32f411", "rt", "tim2", "rtic", "rtic-monotonic"]}
fugit = "0.3.0"
cortex-m-rtic = "0.6.0-rc.4"
#cortex-m-rtic = "0.5.3"
smart-leds-trait = {version = "0.2.0"}
smart-leds = {version = "0.3.0"}
ws2812-spi = {version = "0.4.0"}
# this lets you use `cargo fix`!
[[bin]]
name = "blinky"
test = false
bench = false
[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