[package]
edition = "2021"
name = "assay-runner-linux"
version = "3.35.0"
authors = ["Assay"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal/experimental substrate for Assay measured-run workflows. Linux-only platform adapter for the Assay-Runner candidate; hosts cgroup placement primitives (Phase 2D Slice 3). No standalone product guarantee; API surface remains narrow and intentionally undocumented for third-party use; semver tracks the Assay workspace."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Rul1an/assay"
[lib]
name = "assay_runner_linux"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[target.'cfg(all(unix, not(target_os = "linux")))'.dependencies.nix]
version = "0.27"
features = [
"signal",
"process",
]
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[lints.clippy]
missing_errors_doc = "allow"
print_stdout = "allow"
unwrap_used = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "deny"
unused_lifetimes = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1