[package]
edition = "2021"
name = "hpc-node"
version = "2026.1.28"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared contracts for node-level resource management between HPC systems: cgroup v2 conventions, namespace handoff protocol, mount management, and readiness signaling."
readme = "README.md"
keywords = [
"hpc",
"cgroup",
"namespace",
"mount",
"init",
]
categories = [
"os",
"hardware-support",
]
license = "Apache-2.0"
repository = "https://github.com/witlox/hpc-core"
[lib]
name = "hpc_node"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"