-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
52 lines (45 loc) · 992 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
50
51
52
[package]
edition = "2018"
authors = ["Daniel Egger <[email protected]>"]
categories = [
"embedded",
"no-std",
]
description = "Board support crate for the STM32F407G DISCOVERY microcontroller board"
documentation = "https://docs.rs/crate/stm32f407g-disc"
keywords = [
"arm",
"cortex-m",
"template",
]
license = "0BSD"
name = "stm32f407g-disc"
repository = "https://github.com/stm32-rs/stm32f407g-disc"
version = "0.4.1"
readme = "README.md"
[package.metadata.docs.rs]
features = []
targets = ["thumbv7em-none-eabihf"]
[dependencies]
accelerometer = "0.11.0"
cortex-m = "0.7.2"
cortex-m-rt = "0.7.0"
lis302dl = "0.1.0"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2"
[dependencies.stm32f4xx-hal]
default-features = false
features = ["rt", "stm32f407"]
version = "0.17.0"
[dev-dependencies]
ssd1306 = "0.5.2"
nb = "1.0"
panic-halt = "0.2"
panic-itm = "0.4"
[profile.dev]
debug = true
[profile.release]
debug = true
lto = true
opt-level = "s"