[package]
edition = "2021"
name = "hardware"
version = "0.0.5"
build = false
exclude = ["target/**"]
include = [
"src/**",
"tests/**",
"docs/**",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std bare-metal hardware abstraction layer — all port I/O, memory and swap allocations are guarded at runtime. Do not consider this dependency stable before x.1.x"
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"