-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 718 Bytes
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 = "rusty-clock"
version = "0.1.0"
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
edition = "2018"
[workspace]
[dependencies]
stm32f1xx-hal = { version = "0.5", features = ["rt", "stm32f103" ] }
cortex-m = "0.6"
#cortex-m-rt = { version = "0.6", features = ["device"] }
cortex-m-rtic = "0.5.0"
panic-semihosting = "0.5"
bme280 = "0.2"
pwm-speaker = { git = "https://github.com/TeXitoi/pwm-speaker", branch = "master" }
epd-waveshare = { version = "0.3.2", features = ["type_a_alternative_faster_lut"] }
embedded-hal = "0.2.1"
portable = { path = "portable" }
[profile.dev]
opt-level = 1
lto = true
incremental = false
[profile.release]
lto = true
incremental = false
opt-level = "z"
debug = true