forked from japaric/stm32f103xx-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (33 loc) · 936 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
[package]
authors = ["Jorge Aparicio <[email protected]>"]
categories = ["asynchronous", "embedded", "hardware-support", "no-std"]
description = "Board Support Crate for the Blue Pill"
keywords = ["arm", "cortex-m", "stm32"]
license = "MIT OR Apache-2.0"
name = "blue-pill"
repository = "https://github.com/japaric/blue-pill"
version = "0.1.0"
[dependencies]
static-ref = "0.2.0"
volatile-register = "0.2.0"
[dependencies.cast]
default-features = false
version = "0.2.2"
[dependencies.embedded-hal]
git = "https://github.com/japaric/embedded-hal"
rev = "7d904f515d15fd5fe7ea34e18820ea83e2651fa2"
[dependencies.nb]
git = "https://github.com/japaric/nb"
[dependencies.stm32f103xx]
features = ["rt"]
version = "0.7.2"
[dev-dependencies]
cortex-m = "0.3.0"
cortex-m-rtfm = "0.2.0"
cortex-m-semihosting = "0.2.0"
[dev-dependencies.cortex-m-rt]
features = ["abort-on-panic"]
version = "0.3.5"
[profile.release]
debug = true
lto = true