aboutsummaryrefslogtreecommitdiffstats
path: root/sw/dart-70/Cargo.toml
blob: 18f09fdb53bcad60bf9d04167c90411e93e4d9a2 (plain)
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
[package]
name = "dart-70"
version = "0.1.0"
authors = ["Matthias P. Braendli <matthias.braendli@mpb.li>"]
edition = "2021"
license = "MIT"

[dependencies]
arrayvec = { version = "0.7", default-features = false, features = [] }
cortex-m = "0.7"
cortex-m-rt = "0.7"
cortex-m-semihosting = "0.5"
panic-semihosting = "0.6"
nb = "1.0"
stm32f1xx-hal = { version = "0.10", features = ["rt", "stm32f103", "medium"] }
embedded-hal = { version = "0.2", features = [] }
shared-bus = { version = "0.3", features = ["cortex-m"] }
hd44780-driver = { path = "../deps/hd44780-driver"}
si5351 = { path = "../deps/si5351" }

[profile.dev]
codegen-units = 1
incremental = false
opt-level = 'z'

[profile.release]
codegen-units = 1
debug = true
lto = true
opt-level = 'z'