-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (43 loc) · 1.65 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
[package]
name = "psx-usb"
version = "0.1.0"
authors = ["Timo Kröger <timokroeger93@gmail.com>"]
edition = "2021"
license = "MIT/Apache-2.0"
[dependencies]
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7.4"
defmt = "0.3.6"
defmt-rtt = "0.4"
embassy-futures = { version = "0.1.1", features = ["defmt"] }
embassy-sync = { version = "0.5.0", features = ["defmt"] }
embassy-rp = { version = "0.1.0", features = [
"defmt",
"unstable-pac",
"time-driver",
] }
embassy-time = { version = "0.3.0", features = ["defmt", "generic-queue-8"] }
embassy-usb = { version = "0.1.0", features = [
"defmt",
"max-interface-count-8",
] }
fixed = "1.23"
fixed-macro = "1.2"
lilos = { version = "1.0.0-pre.0", default-features = false }
panic-probe = { version = "0.3", features = ["print-defmt"] }
pio = "0.2.1"
pio-proc = "0.2.2"
[patch.crates-io]
embassy-futures = { git = "https://github.com/embassy-rs/embassy/", rev = "00708d8c2793bf8c59624ec92a6895e2a3a7f586" }
embassy-sync = { git = "https://github.com/embassy-rs/embassy/", rev = "00708d8c2793bf8c59624ec92a6895e2a3a7f586" }
embassy-rp = { git = "https://github.com/embassy-rs/embassy/", rev = "00708d8c2793bf8c59624ec92a6895e2a3a7f586" }
embassy-time = { git = "https://github.com/embassy-rs/embassy/", rev = "00708d8c2793bf8c59624ec92a6895e2a3a7f586" }
embassy-usb = { git = "https://github.com/embassy-rs/embassy/", rev = "00708d8c2793bf8c59624ec92a6895e2a3a7f586" }
lilos = { git = "https://github.com/cbiffle/lilos", rev = "bcbf626e06e2f5dca4a2b1157b5dbc1fdd809536" }
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
codegen-units = 1
debug = true
lto = "fat"