-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.26 KB
/
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
34
35
36
37
[package]
name = "axusb_host"
version = "0.1.0"
authors = ["dbydd <[email protected]>"]
edition = "2021"
[features]
default = ["backend-xhci","packed-drivers"]
packed-drivers = ["axhid"]
cotton-frontend=["cotton-usb-host"]
backend-xhci = ["xhci"]
parallel = []
[dependencies]
xhci = {version="0.9",optional=true}
axhid = {git = "https://github.com/arceos-usb/axhid.git",optional = true}
usb-descriptor-decoder = {git="https://github.com/arceos-usb/usb-descriptor-decoder-rs.git"}
cotton-usb-host = {version = "0.1.0",optional = true,default-features = false}
tock-registers = "0.9.0"
bit_field = "0.10"
num-derive = "0.4.0"
num-traits = { version = "0.2.16", default-features = false }
byteorder = { version = "1.4.3", default-features = false }
log="0.4"
embassy-futures = "0.1.1"
ringbuf = {version = "0.4.7",default-features = false,features = ["alloc"]}
async-ringbuf = {version = "0.3.1",default-features = false,features = ["alloc"]}
async-lock = {version = "3.4.0",default-features = false}
futures = {version = "0.3.31",default-features = false,features = ["async-await","alloc"]}
match_cfg = "0.1.0"
async-trait = "0.1.85"
embassy-executor = {version = "0.7.0"}
lazy_static = "1.5.0"
squeak = "0.2.0"
nosy = {version = "0.1.0",default-features = false,features = ["sync","async"]}