[package]
edition = "2024"
name = "irq-framework"
version = "0.1.1"
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"
[lib]
name = "irq_framework"
path = "src/lib.rs"
[[test]]
name = "std_sim"
path = "tests/std_sim.rs"
[dependencies]