7902864a32
- Cookbook Cargo.toml: 0.1.0 → 0.2.5 - All 61 in-house crate Cargo.toml versions: 0.2.4 → 0.2.5 - os-release.in: fix URLs from github.com to gitea.redbearos.org - sync-versions.sh --check passes with zero drift The OS version is derived from the git branch name at build time. Building on branch 0.2.5 produces os-release with VERSION_ID=0.2.5.
31 lines
580 B
TOML
31 lines
580 B
TOML
[package]
|
|
name = "redox-driver-sys"
|
|
version = "0.2.5"
|
|
edition = "2021"
|
|
description = "Safe Rust wrappers for Redox OS scheme-based hardware access"
|
|
|
|
[dependencies]
|
|
libredox = "0.1.0"
|
|
redox_syscall = { version = "0.8", 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"]
|