aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb/Cargo.toml
diff options
context:
space:
mode:
authoralexmoon <[email protected]>2023-02-07 14:19:51 -0500
committeralexmoon <[email protected]>2023-02-07 14:24:35 -0500
commitaa21aebb0b321a2085571e5be5fffcea4703584d (patch)
tree9b45fb26d9a32b806931fcc6d379af00f4ffec21 /embassy-usb/Cargo.toml
parent9f9230ae7abb545822e59c6f06cabb721b63e0a1 (diff)
Lazily encode UTF16 values and add docs
Diffstat (limited to 'embassy-usb/Cargo.toml')
-rw-r--r--embassy-usb/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml
index 54a8f27c7..eb9ba36f4 100644
--- a/embassy-usb/Cargo.toml
+++ b/embassy-usb/Cargo.toml
@@ -13,7 +13,7 @@ target = "thumbv7em-none-eabi"
13[features] 13[features]
14defmt = ["dep:defmt", "embassy-usb-driver/defmt"] 14defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
15usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"] 15usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"]
16msos-descriptor = ["dep:widestring"] 16msos-descriptor = []
17default = ["usbd-hid"] 17default = ["usbd-hid"]
18 18
19[dependencies] 19[dependencies]
@@ -25,7 +25,6 @@ embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-
25defmt = { version = "0.3", optional = true } 25defmt = { version = "0.3", optional = true }
26log = { version = "0.4.14", optional = true } 26log = { version = "0.4.14", optional = true }
27heapless = "0.7.10" 27heapless = "0.7.10"
28widestring = { version = "1.0.2", default-features = false, optional = true }
29 28
30# for HID 29# for HID
31usbd-hid = { version = "0.6.0", optional = true } 30usbd-hid = { version = "0.6.0", optional = true }