-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 1.08 KB
/
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
[package]
authors = ["Sjoerd Simons <[email protected]>"]
edition = "2021"
name = "ledboard"
version = "0.1.0"
[dependencies]
embassy = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt"] }
embassy-traits = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt"] }
embassy-stm32 = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "stm32f103c8", "unstable-pac", "memory-x", "time-driver-tim2"] }
defmt = "0.3"
defmt-rtt = "0.3"
cortex-m-rt = "0.7.0"
embedded-hal = "0.2.6"
panic-probe = { version = "0.3", features = ["print-defmt"] }
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
rotary-encoder-hal = { version = "0.5.0", features = [ "table-decoder" ] }
[profile.dev]
opt-level = 3
debug = 2
[profile.release]
opt-level = "s"
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = "fat"
overflow-checks = false
panic="abort"
[patch.crates-io]
rotary-encoder-hal = { git = "https://github.com/leshow/rotary-encoder-hal" }