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

34 lines
728 B
TOML

[package]
name = "redbear-threadtest"
version = "0.3.2"
description = "Threading substrate stress validation suite for Red Bear OS — park/unpark, RwLock::write, thread::scope"
repository = "https://gitea.redbearos.org/vasilito/RedBear-OS"
license = "MIT"
edition = "2024"
[[bin]]
name = "redbear-threadtest"
path = "src/bin/redbear-threadtest.rs"
[[bin]]
name = "redbear-threadtest-watchdog"
path = "src/bin/watchdog.rs"
[dependencies]
libc = "0.2"
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = { path = "../../../../../local/sources/syscall" }
[dev-dependencies]
serde_json = "1"
tempfile = "3"
[[test]]
name = "layers"
path = "tests/layers.rs"
[[test]]
name = "watchdog"
path = "tests/watchdog.rs"