22 lines
915 B
TOML
22 lines
915 B
TOML
[package]
|
|
name = "pi-usb-serial"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
embassy-embedded-hal = { version = "0.1.0", features = ["defmt"] }
|
|
embassy-sync = { version = "0.6.0", features = ["defmt"] }
|
|
embassy-executor = { version = "0.5.0", features = ["task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] }
|
|
embassy-time = { version = "0.3.1", features = ["defmt", "defmt-timestamp-uptime"] }
|
|
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl"] }
|
|
embassy-usb = { version = "0.3.0" }
|
|
|
|
defmt = "0.3"
|
|
defmt-rtt = "0.4"
|
|
|
|
cortex-m-rt = "0.7.0"
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
portable-atomic = { version = "1.5", features = ["critical-section"] }
|
|
static_cell = "2"
|