-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libusb 0.7.0 * fix: Add missing fields to libusb_bos_descriptor and libusb_bos_dev_capability_descriptor * Bump libusb to 1.0.27 * Remove unneeded mut rusb 0.9.4 * bLength, bDescriptorType and wTotalLength to descriptors * Use &self reference for all DeviceHandle methods * fix: panic when trying to iterate over an interface with zero endpoints * Log callback API added * Bump libusb1-sys 0.7.0
- Loading branch information
Showing
4 changed files
with
53 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rusb" | ||
version = "0.9.3" | ||
version = "0.9.4" | ||
authors = ["David Cuddeback <[email protected]>", "Ilya Averyanov <[email protected]>"] | ||
description = "Rust library for accessing USB devices." | ||
license = "MIT" | ||
|
@@ -21,7 +21,7 @@ vendored = [ "libusb1-sys/vendored" ] | |
members = ["libusb1-sys"] | ||
|
||
[dependencies] | ||
libusb1-sys = { path = "libusb1-sys", version = "0.6.4" } | ||
libusb1-sys = { path = "libusb1-sys", version = "0.7" } | ||
libc = "0.2" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "libusb1-sys" | ||
version = "0.6.4" | ||
version = "0.7.0" | ||
authors = ["David Cuddeback <[email protected]>", | ||
"Ilya Averyanov <[email protected]>"] | ||
description = "FFI bindings for libusb." | ||
|