diff options
Diffstat (limited to 'embassy-usb-dfu/Cargo.toml')
| -rw-r--r-- | embassy-usb-dfu/Cargo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/embassy-usb-dfu/Cargo.toml b/embassy-usb-dfu/Cargo.toml new file mode 100644 index 000000000..62398afbc --- /dev/null +++ b/embassy-usb-dfu/Cargo.toml | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | [package] | ||
| 2 | edition = "2021" | ||
| 3 | name = "embassy-usb-dfu" | ||
| 4 | version = "0.1.0" | ||
| 5 | description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot" | ||
| 6 | license = "MIT OR Apache-2.0" | ||
| 7 | repository = "https://github.com/embassy-rs/embassy" | ||
| 8 | categories = [ | ||
| 9 | "embedded", | ||
| 10 | "no-std", | ||
| 11 | "asynchronous" | ||
| 12 | ] | ||
| 13 | |||
| 14 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
| 15 | |||
| 16 | [dependencies] | ||
| 17 | bitflags = "2.4.1" | ||
| 18 | cortex-m = { version = "0.7.7", features = ["inline-asm"] } | ||
| 19 | defmt = { version = "0.3.5", optional = true } | ||
| 20 | embassy-boot = { version = "0.1.1", path = "../embassy-boot/boot" } | ||
| 21 | embassy-embedded-hal = { version = "0.1.0", path = "../embassy-embedded-hal" } | ||
| 22 | embassy-futures = { version = "0.1.1", path = "../embassy-futures" } | ||
| 23 | embassy-sync = { version = "0.5.0", path = "../embassy-sync" } | ||
| 24 | embassy-time = { version = "0.2.0", path = "../embassy-time" } | ||
| 25 | embassy-usb = { version = "0.1.0", path = "../embassy-usb", default-features = false } | ||
| 26 | embedded-storage = { version = "0.3.1" } | ||
| 27 | |||
| 28 | [features] | ||
| 29 | bootloader = [] | ||
| 30 | application = [] | ||
| 31 | defmt = ["dep:defmt"] | ||
