embassy_pico_mouse/Cargo.toml
hodasemi f6ec2fd647
Some checks failed
Gavania Merge Build / build (pull_request) Failing after 39m32s
Update Rust crate usbd-hid to 0.8.0
2024-07-26 06:54:47 +02:00

26 lines
1.1 KiB
TOML

[package]
name = "embassy_pico_mouse"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embassy-executor = { version = "0.3.0", git = "https://github.com/embassy-rs/embassy", features = ["nightly", "arch-cortex-m", "executor-thread", "integrated-timers"] }
embassy-rp = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["unstable-traits", "nightly", "unstable-pac", "time-driver", "critical-section-impl"] }
embassy-usb = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["msos-descriptor"] }
embassy-time = { version = "0.1.2", git = "https://github.com/embassy-rs/embassy", features = ["defmt-timestamp-uptime"] }
embassy-futures = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy" }
numtoa = "0.2.4"
usbd-hid = "0.8.0"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.7" }
cortex-m-rt = "0.7.3"
panic-probe = { version = "0.3", features = ["print-defmt"] }
[features]
serial = []
default = ["serial"]