embassy_pico_mouse/Cargo.toml

26 lines
1.1 KiB
TOML
Raw Permalink 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]
2023-08-25 12:14:35 +00:00
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"] }
2023-04-12 09:40:56 +00:00
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-rtt = "0.4"
2023-08-27 00:02:49 +00:00
cortex-m = { version = "0.7.7" }
2023-08-28 00:02:24 +00:00
cortex-m-rt = "0.7.3"
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"]