embassy/embassy-usb-dfu/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

2023-12-13 20:40:49 +01:00
[package]
edition = "2021"
name = "embassy-usb-dfu"
version = "0.1.0"
description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot"
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
categories = [
"embedded",
"no-std",
"asynchronous"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "2.4.1"
cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true }
2023-12-13 20:40:49 +01:00
defmt = { version = "0.3.5", optional = true }
embassy-boot = { version = "0.1.1", path = "../embassy-boot/boot" }
# embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" }
2023-12-13 20:40:49 +01:00
embassy-futures = { version = "0.1.1", path = "../embassy-futures" }
embassy-sync = { version = "0.5.0", path = "../embassy-sync" }
embassy-time = { version = "0.2.0", path = "../embassy-time" }
embassy-usb = { version = "0.1.0", path = "../embassy-usb", default-features = false }
embedded-storage = { version = "0.3.1" }
esp32c3-hal = { version = "0.13.0", optional = true, default-features = false }
2023-12-13 20:40:49 +01:00
[features]
2023-12-14 20:16:58 +01:00
dfu = []
2023-12-13 20:40:49 +01:00
application = []
defmt = ["dep:defmt"]