26 lines
433 B
TOML
26 lines
433 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"
|
|
plain = "0.2"
|
|
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"
|