-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (31 loc) · 980 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
[package]
name = "usbmidi-host"
version = "0.1.0"
edition = "2021"
[dependencies]
embedded-hal = "0.2"
heapless = "0.7"
nb = "0.1"
cortex-m = "0.7"
cortex-m-rt = "0.7"
atsamd-hal = { version = "0.14", features = ["usb", "samd21e-rt"] }
trinket_m0 = { version = "0.11", features = ["usb", "default", "unproven"] }
fugit = "0.3"
atomic-polyfill = "0.1"
#spin = "0.9"
spin = { git = "https://github.com/fralalonde/spin-rs.git", branch = "portable-atomics", features = ["portable_atomic"] }
defmt = "0.3"
defmt-rtt = "0.3"
panic-probe = { version = "0.3", features = ["print-defmt"] }
embedded-usb-host = { path = "../usb-host", features = ["samd21e"] }
embedded-midi = { git = "https://github.com/fralalonde/embedded-midi.git", branch = "main", features = ["defmt"] }
#embedded-midi = { path = "../embedded-midi", features = ["defmt"] }
[profile.dev]
debug = true
#opt-level = "z"
panic = "unwind"
[profile.release]
opt-level = "z"
debug = true
#lto = true
panic = "abort"