embassy_pico_mouse/Cargo.toml

28 lines
1.1 KiB
TOML
Raw Normal View History

2023-04-12 09:40:56 +00:00
[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.1.0", git = "https://github.com/embassy-rs/embassy", features = ["arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
embassy-rp = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio", "critical-section-impl"] }
2023-04-12 14:04:37 +00:00
embassy-usb = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "msos-descriptor"] }
2023-04-12 09:40:56 +00:00
embassy-time = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy", features = ["defmt", "defmt-timestamp-uptime"] }
embassy-futures = { version = "0.1.0", git = "https://github.com/embassy-rs/embassy" }
2023-04-16 17:58:10 +00:00
numtoa = "0.2.4"
2023-04-12 09:40:56 +00:00
usbd-hid = "0.6.1"
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.6" }
cortex-m-rt = "0.7.0"
2023-04-16 12:19:09 +00:00
panic-probe = { version = "0.3", features = ["print-defmt"] }
[features]
serial = []
2023-04-16 17:58:10 +00:00
default = ["serial"]