Files
RedBear-OS/local/recipes/system/firmware-loader/source/Cargo.toml
T
vasilito 836e6d2645 iommu: fix unsafe-as-cast syntax in host stubs (Rust 2024 edition)
Parenthesize  because Rust 2024 edition does
not allow bare  — it requires .
Affected geteuid/getuid/getegid/getgid host stubs.
2026-07-10 10:51:37 +03:00

13 lines
317 B
TOML

[package]
name = "firmware-loader"
version = "0.1.0"
edition = "2021"
[dependencies]
libc = "0.2"
syscall = { package = "redox_syscall", version = "0.7", features = ["std"] }
redox_scheme = { package = "redox-scheme", version = "0.11" }
libredox = "0.1"
log = { version = "0.4", features = ["std"] }
thiserror = "2"