[package]
edition = "2024"
name = "irq-framework"
version = "0.3.2"
authors = ["RCore Team <yuchen@tsinghua.edu.cn>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std dynamic IRQ registration and dispatch framework"
readme = false
keywords = [
"irq",
"interrupt",
"no-std",
"kernel",
]
categories = [
"no-std",
"os",
]
license = "Apache-2.0"
repository = "https://github.com/rcore-os/tgoskits"
[features]
axtest = ["dep:axtest"]
[lib]
name = "irq_framework"
path = "src/lib.rs"
[[test]]
name = "std_sim"
path = "tests/std_sim.rs"
[dependencies.axtest]
version = "0.5.14"
optional = true
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(axtest)"]