-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 803 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
[package]
name = "crkbd-rp2040-keyberon"
version = "0.1.0"
authors = ["Cameron Buss"]
edition = "2021"
description = "Keyboard firmware for crkbd with Sparkfun Pro Micro RP2040"
keywords = ["keyboard", "crkbd", "rp2040", "corne"]
categories = ["embedded", "no-std"]
license = "MIT"
[dependencies]
cortex-m-rt = { version = "0.7.0", features = ["device"] }
cortex-m = "0.7.3"
rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", rev = "427344667e9f24f03d132fa08e2dfaa709bc805d", features = ["rt"] }
embedded-time = "0.12.0"
usb-device= "0.2.8"
panic-halt= "0.2.0"
embedded-hal ="0.2.5"
cortex-m-rtic = "0.6.0-rc.4"
rp2040-boot2 = "0.2"
keyberon = { path = "./../keyberon" }
[profile.dev]
lto = true
incremental = false
opt-level = "z"
debug = true
[profile.release]
lto = true
incremental = false