• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "aarch64-paging"
3version = "0.5.0"
4edition = "2021"
5license = "MIT OR Apache-2.0"
6description = "A library to manipulate AArch64 VMSA EL1 page tables."
7authors = [
8  "Ard Biesheuvel <ardb@google.com>",
9  "Andrew Walbran <qwandor@google.com>",
10]
11repository = "https://github.com/google/aarch64-paging"
12keywords = ["arm", "aarch64", "cortex-a", "vmsa", "pagetable"]
13categories = ["embedded", "no-std", "hardware-support"]
14
15[dependencies]
16bitflags = "2.0.2"
17
18[features]
19default = ["alloc"]
20alloc = []
21
22[package.metadata.docs.rs]
23all-features = true
24default-target = "aarch64-unknown-none"
25