| [package] |
| name = "rusb" |
| version = "0.9.4" |
| authors = ["David Cuddeback <[email protected]>", "Ilya Averyanov <[email protected]>"] |
| description = "Rust library for accessing USB devices." |
| license = "MIT" |
| homepage = "https://github.com/a1ien/rusb" |
| repository = "https://github.com/a1ien/rusb.git" |
| readme = "README.md" |
| keywords = ["usb", "libusb", "hardware", "bindings"] |
| edition = "2018" |
| build = "build.rs" |
| |
| [badges] |
| travis-ci = { repository = "a1ien/rusb" } |
| |
| [features] |
| vendored = [ "libusb1-sys/vendored" ] |
| |
| [workspace] |
| members = ["libusb1-sys"] |
| |
| [dependencies] |
| libusb1-sys = { path = "libusb1-sys", version = "0.7" } |
| libc = "0.2" |
| serde = { version = "1.0", features = ["derive"], optional = true } |
| |
| [dev-dependencies] |
| regex = "1" |
| usb-ids = "1.2023.0" |