forked from rust-embedded-community/usb-device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 952 Bytes
/
Cargo.toml
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
31
32
33
[package]
name = "usb-device"
description = "Experimental device-side USB stack for embedded devices."
version = "0.2.8"
edition = "2018"
readme = "README.md"
keywords = ["no-std", "embedded", "usb"]
license = "MIT"
authors = ["Matti Virkkunen <[email protected]>"]
repository = "https://github.com/mvirkkunen/usb-device"
[dependencies]
embedded-time = "0.12.0"
[dev-dependencies]
rusb = "0.8.0"
rand = "0.6.1"
[features]
# Use a 256 byte buffer for control transfers instead of 128.
control-buffer-256 = []
# Use larger endpoint buffers for highspeed operation (default fullspeed)
#
# Note: usb-device doesn't truly support high speed enumeration yet, so setting this will make
# TestClass only compliant with high speed mode. It may still manage to be enumerated as a full
# speed device, but the descriptors will be invalid.
test-class-high-speed = []
[[test]]
name = "test_class_host"
path = "tests/test_class_host/main.rs"
harness = false