暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Cargo.toml 1.1KB

123456789101112131415161718192021222324252627282930313233343536
  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. cortex-m-semihosting = "0.3.7"
  12. embedded-hal ="0.2.5"
  13. embedded-time = "0.12.0"
  14. nb = "1.0"
  15. #panic-halt = "0.2.0"
  16. panic-semihosting = "0.5"
  17. #panic-write = "0.1.0"
  18. pio = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
  19. pio-proc = { git = "https://github.com/rp-rs/pio-rs.git", branch = "main" }
  20. #rp2040-hal = { git = "https://github.com/rp-rs/rp-hal.git", features = ["rt"] }
  21. rp2040-hal = { path = "../rp-hal/rp2040-hal", features = ["rt"] }
  22. rp2040-boot2 = "0.1.2"
  23. stable_deref_trait = { version = "1.2.0", default-features = false }
  24. systick-monotonic = "0.1.0-alpha.0"
  25. usb-device = { version = "0.2.8", features = ["control-buffer-256"] }
  26. void = { version = "*", default_features = false }
  27. [patch.crates-io]
  28. usb-device = { path = "../usb-device" }
  29. [profile]
  30. [profile.release]
  31. debug = true
  32. lto = true