Files
RedBear-OS/xhcid/Cargo.toml
T
2020-04-22 21:21:55 +02:00

32 lines
765 B
TOML

[package]
name = "xhcid"
version = "0.1.0"
edition = "2018"
[[bin]]
name = "xhcid"
path = "src/main.rs"
[lib]
name = "xhcid_interface"
path = "src/lib.rs"
[dependencies]
bitflags = "1"
chashmap = { git = "https://gitlab.redox-os.org/redox-os/chashmap.git" }
crossbeam-channel = "0.4"
futures = "0.3"
plain = "0.2"
lazy_static = "1.4"
log = "0.4"
redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git" }
redox-log = { git = "https://gitlab.redox-os.org/redox-os/redox-log.git", tag = "v0.1.0" }
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
smallvec = { version = "1", features = ["serde"] }
thiserror = "1"
toml = "0.5"
pcid = { path = "../pcid" }