Files
RedBear-OS/pcid/Cargo.toml
T
2020-04-22 18:27:43 +02:00

28 lines
536 B
TOML

[package]
name = "pcid"
version = "0.1.0"
edition = "2018"
[[bin]]
name = "pcid"
path = "src/main.rs"
[lib]
name = "pcid_interface"
path = "src/lib.rs"
[dependencies]
bincode = "1.2"
bitflags = "1"
byteorder = "1.2"
libc = "0.2"
log = "0.4"
plain = "0.2"
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 = "1"
thiserror = "1"
toml = "0.5"