-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 851 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 851 Bytes
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
[package]
edition = "2021"
name = "qtpy"
version = "0.2.0"
[dependencies]
cortex-m.workspace = true
cortex-m-rt.workspace = true
embedded-hal.workspace = true
defmt.workspace = true
defmt-rtt.workspace = true
#panic-probe.workspace = true
rp2040-panic-usb-boot.workspace = true
# Not using an external BSP, we've got the Framework Laptop 16 BSPs locally in this crate
rp2040-hal.workspace = true
rp2040-boot2.workspace = true
# USB Serial
usb-device.workspace = true
heapless.workspace = true
usbd-serial.workspace = true
usbd-hid.workspace = true
usbd-picotool-reset.workspace = true
fugit.workspace = true
# C1 Minimal
smart-leds.workspace = true
ws2812-pio.workspace = true
# QT Py
adafruit-qt-py-rp2040 = "0.6.0"
[dependencies.fl16-inputmodules]
path = "../fl16-inputmodules"
# Same feature as c1minimal
features = [ "c1minimal", "qtpy" ]