usbip-rs/Cargo.toml
2020-05-16 15:34:21 +08:00

23 lines
593 B
TOML

[package]
name = "usbip"
version = "0.1.0"
authors = ["Jiajie Chen <c@jia.je>"]
edition = "2018"
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/jiegec/usbip"
description = "A library to run USB/IP server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "0.2", features = ["rt-core", "tcp", "stream", "io-util"] }
log = "0.4"
futures = "0.3"
num-traits = "0.2"
num-derive = "0.3"
rusb = "0.5"
[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
env_logger = "0.7"