-
Notifications
You must be signed in to change notification settings - Fork 62
/
Cargo.toml
44 lines (40 loc) · 973 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
[package]
name = "ula"
version = "0.0.4"
authors = ["Vitaly Domnikov <[email protected]>"]
repository = "https://github.com/dotcypress/ula"
description = "μLA: Micro Logic Analyzer for RP2040"
edition = "2021"
license = "MIT/Apache-2.0"
readme = "README.md"
[dependencies]
rtic = { version = "2.1.1", features = ["thumbv6-backend"] }
rtic-monotonics = { version = "2.0.0", features = ["rp2040"] }
defmt = "0.3.8"
defmt-rtt = "0.4.1"
rp2040-hal = { version = "0.10.2", features = ["rt", "critical-section-impl"] }
rp2040-boot2 = "0.3.0"
pio = "0.2.1"
usbd-serial = "0.2.2"
usb-device = "0.3.2"
cortex-m = "0.7.7"
panic-probe = "0.3.2"
embedded-hal = "1.0.0"
[features]
default = []
generic-bootloader = []
[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