summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 77c6244443f1292dbed59cc82f0e6df762a97594 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "bluepill-bcdclock"
description = "A BCD clock using DS3231"
authors = ["Ted Yin <tederminant@gmail.com>"]
keywords = ["no-std", "arm", "cortex-m", "stm32"]
license = "GPL-3.0"
version = "0.1.0"

[dependencies.stm32f103xx]
features = ["rt"]
version = "0.7.2"

[dependencies.cortex-m-rt]
version = "0.3.5"
features = ["abort-on-panic"]

[dependencies.cortex-m]
version = "0.3.0"

[profile.release]
debug = true
lto = true