-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (42 loc) · 940 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
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "wzhooh"
version = "0.1.2"
authors = ["Vitaly Domnikov <oss@vitaly.codes>"]
repository = "https://github.com/dotcypress/wzhooh"
description = "Slot car lap timer"
edition = "2021"
license = "MIT/Apache-2.0"
readme = "README.md"
[dependencies]
cortex-m-rtic = "1.1.4"
defmt = "=0.3.2"
defmt-rtt = "0.4.0"
panic-halt = "0.2.0"
rp2040-hal = { version = "0.9.1", features = ["rt", "critical-section-impl", "rtic-monotonic"] }
rp2040-boot2 = "0.3.0"
pio = "0.2.1"
usbd-serial = "0.1.1"
usbd-hid = "0.6.1"
usb-device = "0.2.9"
cortex-m = "0.7.7"
panic-probe = "0.3.1"
embedded-hal = "0.2.7"
fugit = "0.3.7"
heapless = "0.7.16"
usbd-webusb = "1.0.2"
nb = "1.1.0"
[profile.dev]
codegen-units = 1
debug = 2
debug-assertions = true
incremental = false
opt-level = 3
overflow-checks = true
[profile.release]
codegen-units = 2
debug = 1
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 3
overflow-checks = false