aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-07-16 12:02:07 +0000
committerGitHub <[email protected]>2024-07-16 12:02:07 +0000
commite1e99879a63408d17d0c947ca65fbeea827467c9 (patch)
tree6f5e1742e5d0d75e4f6387b739922c78d1fc3052
parent4472e08bcaf0adbd5d87d55818a5b3ef3602abb1 (diff)
parentd78ce3c6ab46825a18a6ee6086bea08270aa8076 (diff)
Merge pull request #3181 from JuliDi/bump-udbd-hid
Bump usbd-hid from 0.7.0 to 0.8.1 to fix compile errors in rp examples
-rw-r--r--embassy-usb/Cargo.toml2
-rw-r--r--examples/nrf52840/Cargo.toml2
-rw-r--r--examples/nrf5340/Cargo.toml2
-rw-r--r--examples/rp/Cargo.toml2
-rw-r--r--examples/stm32f4/Cargo.toml2
-rw-r--r--examples/stm32g4/Cargo.toml2
-rw-r--r--examples/stm32l5/Cargo.toml2
7 files changed, 7 insertions, 7 deletions
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml
index 191ed0a6a..1cc9cf64e 100644
--- a/embassy-usb/Cargo.toml
+++ b/embassy-usb/Cargo.toml
@@ -56,5 +56,5 @@ log = { version = "0.4.14", optional = true }
56heapless = "0.8" 56heapless = "0.8"
57 57
58# for HID 58# for HID
59usbd-hid = { version = "0.7.0", optional = true } 59usbd-hid = { version = "0.8.1", optional = true }
60ssmarshal = { version = "1.0", default-features = false, optional = true } 60ssmarshal = { version = "1.0", default-features = false, optional = true }
diff --git a/examples/nrf52840/Cargo.toml b/examples/nrf52840/Cargo.toml
index 000857821..ff90d13af 100644
--- a/examples/nrf52840/Cargo.toml
+++ b/examples/nrf52840/Cargo.toml
@@ -27,7 +27,7 @@ cortex-m-rt = "0.7.0"
27panic-probe = { version = "0.3", features = ["print-defmt"] } 27panic-probe = { version = "0.3", features = ["print-defmt"] }
28rand = { version = "0.8.4", default-features = false } 28rand = { version = "0.8.4", default-features = false }
29embedded-storage = "0.3.1" 29embedded-storage = "0.3.1"
30usbd-hid = "0.7.0" 30usbd-hid = "0.8.1"
31serde = { version = "1.0.136", default-features = false } 31serde = { version = "1.0.136", default-features = false }
32embedded-hal = { version = "1.0" } 32embedded-hal = { version = "1.0" }
33embedded-hal-async = { version = "1.0" } 33embedded-hal-async = { version = "1.0" }
diff --git a/examples/nrf5340/Cargo.toml b/examples/nrf5340/Cargo.toml
index 02f6190f0..aeed39b3d 100644
--- a/examples/nrf5340/Cargo.toml
+++ b/examples/nrf5340/Cargo.toml
@@ -23,7 +23,7 @@ cortex-m-rt = "0.7.0"
23panic-probe = { version = "0.3", features = ["print-defmt"] } 23panic-probe = { version = "0.3", features = ["print-defmt"] }
24rand = { version = "0.8.4", default-features = false } 24rand = { version = "0.8.4", default-features = false }
25embedded-storage = "0.3.1" 25embedded-storage = "0.3.1"
26usbd-hid = "0.7.0" 26usbd-hid = "0.8.1"
27serde = { version = "1.0.136", default-features = false } 27serde = { version = "1.0.136", default-features = false }
28 28
29[profile.release] 29[profile.release]
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
index d06ab5e5a..604112546 100644
--- a/examples/rp/Cargo.toml
+++ b/examples/rp/Cargo.toml
@@ -44,7 +44,7 @@ display-interface = "0.4.1"
44byte-slice-cast = { version = "1.2.0", default-features = false } 44byte-slice-cast = { version = "1.2.0", default-features = false }
45smart-leds = "0.3.0" 45smart-leds = "0.3.0"
46heapless = "0.8" 46heapless = "0.8"
47usbd-hid = "0.7.0" 47usbd-hid = "0.8.1"
48 48
49embedded-hal-1 = { package = "embedded-hal", version = "1.0" } 49embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
50embedded-hal-async = "1.0" 50embedded-hal-async = "1.0"
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml
index d909c7e68..dbfaecb5e 100644
--- a/examples/stm32f4/Cargo.toml
+++ b/examples/stm32f4/Cargo.toml
@@ -30,7 +30,7 @@ heapless = { version = "0.8", default-features = false }
30nb = "1.0.0" 30nb = "1.0.0"
31embedded-storage = "0.3.1" 31embedded-storage = "0.3.1"
32micromath = "2.0.0" 32micromath = "2.0.0"
33usbd-hid = "0.7.0" 33usbd-hid = "0.8.1"
34static_cell = "2" 34static_cell = "2"
35chrono = { version = "^0.4", default-features = false} 35chrono = { version = "^0.4", default-features = false}
36 36
diff --git a/examples/stm32g4/Cargo.toml b/examples/stm32g4/Cargo.toml
index ac6010f5f..8837ca52e 100644
--- a/examples/stm32g4/Cargo.toml
+++ b/examples/stm32g4/Cargo.toml
@@ -12,7 +12,7 @@ embassy-executor = { version = "0.5.0", path = "../../embassy-executor", feature
12embassy-time = { version = "0.3.1", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 12embassy-time = { version = "0.3.1", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
13embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defmt"] } 13embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defmt"] }
14embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 14embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
15usbd-hid = "0.7.0" 15usbd-hid = "0.8.1"
16 16
17defmt = "0.3" 17defmt = "0.3"
18defmt-rtt = "0.4" 18defmt-rtt = "0.4"
diff --git a/examples/stm32l5/Cargo.toml b/examples/stm32l5/Cargo.toml
index e4a3c8e9c..e32714cc6 100644
--- a/examples/stm32l5/Cargo.toml
+++ b/examples/stm32l5/Cargo.toml
@@ -13,7 +13,7 @@ embassy-time = { version = "0.3.1", path = "../../embassy-time", features = ["de
13embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defmt"] } 13embassy-usb = { version = "0.2.0", path = "../../embassy-usb", features = ["defmt"] }
14embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] } 14embassy-net = { version = "0.4.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet"] }
15embassy-futures = { version = "0.1.0", path = "../../embassy-futures" } 15embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
16usbd-hid = "0.7.0" 16usbd-hid = "0.8.1"
17 17
18defmt = "0.3" 18defmt = "0.3"
19defmt-rtt = "0.4" 19defmt-rtt = "0.4"