-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
32 lines (28 loc) · 949 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "trapframe"
version = "0.10.0"
authors = [
"Runji Wang <[email protected]>",
"Jiajie Chen <[email protected]>",
"Hoblovski <[email protected]>",
"Ben Pig Chu <[email protected]>",
]
edition = "2021"
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"
exclude = ["docs", ".idea"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86_64 = "0.15"
raw-cpuid = "11.0"
[features]
default = []
# This requires allocating a 64K consecutive memory block.
ioport_bitmap = []