[package]
edition = "2021"
name = "hardware"
version = "0.0.3"
build = false
exclude = ["target/**"]
include = [
"src/**",
"tests/**",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std bare-metal hardware abstraction layer — WARNING: do NOT modify tests, no internal safety is implemented yet, raw syscalls and direct hardware access with no sandboxing"
readme = "README.md"
license = "MIT"
[lib]
name = "hardware"
path = "src/lib.rs"
[[test]]
name = "detect_all"
path = "tests/detect_all.rs"
[[test]]
name = "stress_sequential"
path = "tests/stress_sequential.rs"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"