Files
RedBear-OS/local/recipes/system/redbear-wifictl/source/Cargo.toml
T

29 lines
978 B
TOML

[package]
name = "redbear-wifictl"
version = "0.3.1"
edition = "2024"
[[bin]]
name = "redbear-wifictl"
path = "src/main.rs"
[features]
default = []
dbus-nm = ["dep:zbus"]
[dependencies]
libc = "0.2"
libredox = { path = "../../../../../local/sources/libredox", features = ["call", "std"] }
log = { version = "0.4", features = ["std"] }
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
syscall = { path = "../../../../../local/sources/syscall", package = "redox_syscall", features = ["std"] }
redox-driver-sys = { path = "../../../drivers/redox-driver-sys/source" }
zbus = { version = "5", default-features = false, features = ["tokio"], optional = true }
[target.'cfg(target_os = "redox")'.dependencies]
redox-driver-sys = { path = "../../../drivers/redox-driver-sys/source", features = ["redox"] }
[patch.crates-io]
redox-scheme = { path = "../../../../../local/sources/redox-scheme" }
redox_syscall = { path = "../../../../../local/sources/syscall" }