-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 1.12 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
37
38
[package]
name = "unsafe-key"
version = "1.0.0"
edition = "2021"
[profile.release]
# optimize for size ('z' would optimize even more)
opt-level = 3
# link with link time optimization (lto).
lto = true
# enable debugging in release mode.
debug = false
[dependencies]
# Gives us access to the STM32F1 registers
stm32f1xx-hal = { version = "*", features = ["stm32f103", "rt", "medium"] }
# provides startup code for the ARM CPU
cortex-m-rt = { version = "*", features = ["device"] }
# provides access to low level ARM CPU registers (used for delay)
cortex-m = { version = "*", features = ["critical-section-single-core"]}
# provies a panic-handler (halting cpu)
# (required when not using stdlib)
panic-halt = "*"
micromath = "*"
# ssd1306 = "*"
embedded-hal = "*"
# embedded-graphics = "*"
nb = "*"
fugit = "*"
usb-device = "*"
usbd-hid = "*"
build-time = "*"
byteorder = { version = "*", default-features = false }
num_enum = { version = "*", default-features = false }
panic-reset = "*"
embedded-alloc = "*"
# arrav = { version = "*", default-features = false, features = [] }
# concat-in-place = { version = "*", default-features = false }