Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 832B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "rp2040-usb-sound-card"
  3. version = "0.1.0"
  4. edition = "2018"
  5. resolver = "2"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. cortex-m = "0.7.2"
  9. cortex-m-rt = "0.7"
  10. cortex-m-rtic = "0.6.0-alpha.5"
  11. embedded-hal ="0.2.5"
  12. embedded-time = "0.12.0"
  13. nb = "1.0"
  14. panic-halt = "0.2.0"
  15. pio = { path = "../pio-rs" }
  16. pio-proc = { path = "../pio-rs/pio-proc" }
  17. #rp2040-hal = { git = "https://github.com/rp-rs/rp-hal.git", features = ["rt"] }
  18. rp2040-hal = { path = "../rp-hal/rp2040-hal", features = ["rt"] }
  19. rp2040-boot2 = "0.1.2"
  20. stable_deref_trait = { version = "1.2.0", default-features = false }
  21. systick-monotonic = "0.1.0-alpha.0"
  22. usb-device= "0.2.8"
  23. void = { version = "*", default_features = false }
  24. [patch.crates-io]
  25. usb-device = { path = "../usb-device" }