-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 816 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]
authors = ["Matvei <matvei@wheel.me>"]
edition = "2018"
readme = "README.md"
name = "stm32f0-can-ws2812-led"
version = "0.1.0"
[dependencies]
cortex-m = "0.6.0"
cortex-m-rt = "0.6.10"
stm32f0xx-hal = {version = "0.16", features = ["stm32f042", "rt"]}
nb = "1.0.0"
rtt-target = { version = "0.2.2", features = ["cortex-m"] }
cortex-m-rtic = { version = "0.5.5" }
embedded-hal = "0.2"
smart-leds-trait = {version = "0.2.0"}
smart-leds = {version = "0.3.0"}
ws2812-spi = {version = "0.2.0"}
[[bin]]
name = "stm32f0-can-ws2812-led"
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
opt-level = 3
[features]
mosi_idle_high = []
master = []
tr = []
bl = []
br = []