-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (34 loc) · 991 Bytes
/
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
39
40
[package]
name = "k2k_advantage"
version = "0.1.0"
authors = [ "Tyberius Prime <tyberius_prime@coonabibba.de>"]
edition = "2018"
[dependencies]
stm32f1xx-hal = { version = "0.3", features = ["rt", "stm32f103" ] }
cortex-m = "0.5"
cortex-m-rt = { version = "0.6.10", features = ["device"] }
panic-halt = "*"
stm32-usbd = { version = "0.3.0", features = ["stm32f103xx"] }
usb-device = "0.2.0"
cortex-m-rtfm = "0.4.1" #todo: upgrade to 0.4.3
cortex-m-semihosting = "0.3.2"
either = {version = "1.5", default-features = false}
nb = "0.1.2"
no-std-compat = {version="0.1.0", features=["alloc", ]}
embedded-hal = "0.2.3"
alloc-cortex-m = "0.3.5"
debouncing="0.1.0"
[dependencies.smallbitvec]
git = "https://github.com/servo/smallbitvec"
version = "2.4.0"
[dependencies.keytokey]
git = "https://github.com/TyberiusPrime/KeyToKey.git"
[dependencies.stm32f1]
version = "0.7.0"
features = ["stm32f103", "rt"]
[profile.dev]
lto = true
opt-level = "z"
[profile.release]
lto = true
opt-level = "z"