-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (47 loc) · 2.69 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "cantor36-rs"
version = "0.1.0"
authors = ["Boris Faure <[email protected]>"]
edition = "2021"
[features]
keymap_basic = []
keymap_borisfaure = []
keymap_test = []
right = []
left = []
default = ["left", "keymap_borisfaure"]
[dependencies]
#embassy-stm32 = { git = "https://github.com/borisfaure/embassy", branch="all_merged", features = ["defmt", "stm32f401cd", "unstable-pac", "memory-x", "time-driver-any", "exti", "chrono"] }
#embassy-sync = { git = "https://github.com/borisfaure/embassy", branch="all_merged", features = ["defmt"] }
#embassy-executor = { git = "https://github.com/borisfaure/embassy", branch="all_merged", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
#embassy-time = { git = "https://github.com/borisfaure/embassy", branch="all_merged", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
#embassy-usb = { git = "https://github.com/borisfaure/embassy", branch="all_merged", features = ["defmt" ] }
#embassy-futures = { git = "https://github.com/borisfaure/embassy", branch="all_merged"}
#usbd-hid = { git = "https://github.com/borisfaure/usbd-hid", branch="master" }
#usbd-hid = { git = "https://github.com/borisfaure/usbd-hid", branch="master" }
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", features = ["defmt", "stm32f401cd", "unstable-pac", "memory-x", "time-driver-any", "exti", "chrono"] }
embassy-sync = { git = "https://github.com/embassy-rs/embassy", features = ["defmt"] }
embassy-executor = { git = "https://github.com/embassy-rs/embassy", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
embassy-time = { git = "https://github.com/embassy-rs/embassy", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
embassy-usb = { git = "https://github.com/embassy-rs/embassy", features = ["defmt" ] }
embassy-futures = { git = "https://github.com/embassy-rs/embassy"}
usbd-hid = "0.8.2"
keyberon = { git = "https://github.com/borisfaure/keyberon", branch = "shifted_seq" }
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
cortex-m-rt = "0.7.0"
embedded-io = "0.6"
embedded-io-async = "0.6"
panic-probe = { version = "0.3", features = ["print-defmt"] }
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
heapless = { version = "0.8", default-features = false }
nb = "1.0"
embedded-storage = "0.3.1"
micromath = "2.0.0"
static_cell = "2"
chrono = { version = "^0.4", default-features = false}
[profile.release]
opt-level = 'z'
lto = true
incremental = false