-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
49 lines (43 loc) · 911 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
edition = "2018"
authors = ["Daniel Egger <[email protected]>"]
categories = [
"embedded",
"no-std",
]
description = "Board support crate for the STM32F429I DISCOVERY microcontroller board"
documentation = "https://docs.rs/crate/stm32f429i-disc"
keywords = [
"arm",
"cortex-m",
"template",
"bsp",
"stm32",
"stm32f429"
]
license = "0BSD"
name = "stm32f429i-disc"
repository = "https://github.com/stm32-rs/stm32f429i-disc"
version = "0.3.0"
readme = "README.md"
[dependencies]
cortex-m = "0.6.2"
cortex-m-rt = "0.6.12"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.3"
[dependencies.stm32f4xx-hal]
default-features = false
features = ["rt", "stm32f429"]
version = "0.8.0"
[dev-dependencies]
ssd1306 = "0.4"
nb = "1.0"
panic-halt = "0.2.0"
l3gd20 = "0.2.0"
[profile.dev]
debug = true
[profile.release]
debug = true
lto = true
opt-level = "s"