-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
33 lines (30 loc) · 830 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
[package]
name = "lily58-rp2040-keyberon"
version = "0.1.0"
authors = ["Cameron Buss"]
edition = "2021"
description = "Keyboard firmware for Lily58 Pro with Sparkfun Pro Micro RP2040"
keywords = ["keyboard", "lily58", "rp2040"]
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 = "b94a5ab88566b4b5e3e0a019b0f2ba04c1ab9d79", 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
opt-level = "z"
debug = false