[package]
edition = "2021"
name = "trapframe"
version = "0.11.0"
authors = [
"Runji Wang <wangrunji0408@163.com>",
"Jiajie Chen <c@jia.je>",
"Hoblovski <daizy19@mails.tsinghua.edu.cn>",
"Ben Pig Chu <benpichu@gmail.com>",
]
build = "build.rs"
exclude = [
"docs",
".idea",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Handle Trap Frame across kernel and user space on multiple ISAs."
homepage = "https://github.com/rcore-os/trapframe-rs"
documentation = "https://docs.rs/trapframe"
readme = "README.md"
keywords = [
"no_std",
"interrupt",
"bare-metal",
"x86_64",
"riscv",
]
categories = [
"no-std",
"embedded",
]
license = "MIT"
repository = "https://github.com/rcore-os/trapframe-rs"
[features]
default = []
ioport_bitmap = []
[lib]
name = "trapframe"
path = "src/lib.rs"
[dependencies]
[target.'cfg(target_arch = "x86_64")'.dependencies.raw-cpuid]
version = "11.0"
[target.'cfg(target_arch = "x86_64")'.dependencies.x86_64]
version = "0.15"
features = ["instructions"]
default-features = false