25 lines
596 B
TOML
25 lines
596 B
TOML
[package]
|
|
name = "usbhidd"
|
|
description = "USB HID driver"
|
|
version = "0.1.0"
|
|
authors = ["4lDO2 <4lDO2@protonmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bitflags.workspace = true
|
|
log.workspace = true
|
|
orbclient.workspace = true
|
|
redox_syscall.workspace = true
|
|
rehid = { git = "https://gitlab.redox-os.org/redox-os/rehid.git" }
|
|
xhcid = { path = "../../usb/xhcid" }
|
|
|
|
common = { path = "../../common" }
|
|
inputd = { path = "../../inputd" }
|
|
|
|
[lints]
|
|
workspace = true
|