-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 1.06 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
[package]
name = "pic32probe"
description = "ICSP (2-wire) dongle for flashing PIC32 microcontrollers"
version = "0.1.0"
authors = ["Stephan <[email protected]>"]
license = "GPL-2.0-or-later"
edition = "2021"
[workspace]
members = [
"system-timer",
"usb-log",
]
exclude = ["usb-logread"]
[features]
default = ["adafruit_qt"]
adafruit_itsy = []
adafruit_qt = []
[dependencies]
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
cfg-if = "1.0.0"
rp2040-hal = { version="0.9", features=["rt", "critical-section-impl"] }
pio = "0.2.1"
rp2040-boot2 = "0.3.0"
embedded-hal = "0.2.7"
fugit = "0.3.7"
panic-persist = { version = "0.3.0", features = ["utf8"] }
usb-log = { path = "usb-log" }
system-timer = { path = "system-timer", features = ["rp2040"] }
usb-device = { version = "0.2.8", features = ["control-buffer-256"] }
usbd-serial = "0.1.1"
heapless = "0.8.0"
byteorder = { version = "1.4.3", default-features = false }
log = "0.4"
[build-dependencies]
chrono = "0.4"
[profile.release]
#opt-level = "s"
opt-level = 2
lto = true
debug = true
[profile.dev]
opt-level = 2
lto = true