forked from a1ien/rusb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 761 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rusb"
version = "0.9.4"
authors = ["David Cuddeback <david.cuddeback@gmail.com>", "Ilya Averyanov <a1ien.n3t@gmail.com>"]
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"