-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
65 lines (59 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
[package]
edition = "2021"
name = "keyball-embassy-rp2040"
version = "0.1.0"
authors = ["nazo6 <[email protected]>"]
resolver = "2"
[dependencies]
embassy-embedded-hal = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = [
"defmt",
] }
embassy-executor = { version = "0.5.0", git = "https://github.com/embassy-rs/embassy", features = [
"task-arena-size-32768",
"arch-cortex-m",
"executor-thread",
"executor-interrupt",
"defmt",
"integrated-timers",
] }
embassy-time = { version = "0.3.0", git = "https://github.com/embassy-rs/embassy", features = [
"defmt",
"defmt-timestamp-uptime",
] }
embassy-rp = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = [
"defmt",
"unstable-pac",
"time-driver",
"critical-section-impl",
] }
embassy-usb = { version = "0.2.0", git = "https://github.com/embassy-rs/embassy", features = [
"defmt",
] }
embassy-futures = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy" }
embassy-sync = { version = "0.5.0", git = "https://github.com/embassy-rs/embassy" }
defmt = "0.3"
defmt-rtt = "0.4"
fixed = "1.23.1"
fixed-macro = "1.2"
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
cortex-m-rt = "0.7.0"
usbd-hid = "0.7.0"
ssd1306 = { git = "https://github.com/bugadani/ssd1306", branch = "ehal1" }
embedded-graphics = "0.8.1"
heapless = "0.8.0"
pio-proc = "0.2.2"
pio = "0.2.1"
smart-leds = "0.4.0"
paste = "1.0.14"
bitflags = "2.5.0"
postcard = "1.0.8"
serde = { version = "1.0.202", default-features = false, features = ["derive"] }
display-interface = "0.5.0"
[features]
default = ["rp2040"]
rp2040 = []
force-master = []
force-slave = []
[profile.release]
lto = true
panic = "abort"