aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-dfu/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-usb-dfu/Cargo.toml')
-rw-r--r--embassy-usb-dfu/Cargo.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/embassy-usb-dfu/Cargo.toml b/embassy-usb-dfu/Cargo.toml
index ce2f80b31..1bf39641f 100644
--- a/embassy-usb-dfu/Cargo.toml
+++ b/embassy-usb-dfu/Cargo.toml
@@ -1,7 +1,7 @@
1[package] 1[package]
2edition = "2021" 2edition = "2021"
3name = "embassy-usb-dfu" 3name = "embassy-usb-dfu"
4version = "0.1.0" 4version = "0.1.1"
5description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot" 5description = "An implementation of the USB DFU 1.1 protocol, using embassy-boot"
6license = "MIT OR Apache-2.0" 6license = "MIT OR Apache-2.0"
7repository = "https://github.com/embassy-rs/embassy" 7repository = "https://github.com/embassy-rs/embassy"
@@ -37,11 +37,11 @@ log = { version = "0.4.17", optional = true }
37 37
38bitflags = "2.4.1" 38bitflags = "2.4.1"
39cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true } 39cortex-m = { version = "0.7.7", features = ["inline-asm"], optional = true }
40embassy-boot = { version = "0.6.0", path = "../embassy-boot" } 40embassy-boot = { version = "0.6.1", path = "../embassy-boot" }
41embassy-futures = { version = "0.1.1", path = "../embassy-futures" } 41embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
42embassy-sync = { version = "0.7.1", path = "../embassy-sync" } 42embassy-sync = { version = "0.7.2", path = "../embassy-sync" }
43embassy-time = { version = "0.4.0", path = "../embassy-time" } 43embassy-time = { version = "0.5.0", path = "../embassy-time" }
44embassy-usb = { version = "0.5.0", path = "../embassy-usb", default-features = false } 44embassy-usb = { version = "0.5.1", path = "../embassy-usb", default-features = false }
45embedded-storage = { version = "0.3.1" } 45embedded-storage = { version = "0.3.1" }
46esp32c3-hal = { version = "0.13.0", optional = true, default-features = false } 46esp32c3-hal = { version = "0.13.0", optional = true, default-features = false }
47 47