[package]
edition = "2024"
name = "libarch"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "API for low-level machine access and related type abstractions"
readme = "README.md"
keywords = [
"arch",
"cpu",
]
categories = [
"hardware-support",
"no-std",
"os",
]
license = "MIT"
repository = "https://github.com/joshuaseaton/hark"
[lib]
name = "libarch"
path = "src/lib.rs"
[dependencies.bitfld]
version = "0.2"
[dependencies.zerocopy]
version = "0.8"
features = ["derive"]
[lints.clippy]
empty_loop = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1