35 lines
800 B
TOML
35 lines
800 B
TOML
[package]
|
|
name = "redox-driver-sys"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
description = "Safe Rust wrappers for Redox OS scheme-based hardware access"
|
|
|
|
[dependencies]
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|
|
redox_syscall = { path = "../../../../../local/sources/syscall", features = ["std"] }
|
|
log = "0.4"
|
|
thiserror = "2"
|
|
bitflags = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
bincode = "1"
|
|
toml = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
redox = []
|
|
|
|
[lib]
|
|
crate-type = ["rlib", "staticlib"]
|
|
|
|
[dev-dependencies]
|
|
linux-kpi = { path = "../../linux-kpi/source" }
|
|
|
|
[[test]]
|
|
name = "smoke_test"
|
|
harness = false
|
|
required-features = ["redox"]
|
|
|
|
[patch.crates-io]
|
|
redox_syscall = { path = "../../../../../local/sources/syscall" }
|
|
libredox = { path = "../../../../../local/sources/libredox" }
|