-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 793 Bytes
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
[package]
name = "aarch64-rt"
version = "0.4.3"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Startup code and exception vector for aarch64 Cortex-A processors."
authors = ["Andrew Walbran <qwandor@google.com>"]
repository = "https://github.com/google/aarch64-rt"
keywords = ["arm", "aarch64", "cortex-a"]
categories = ["embedded", "no-std"]
rust-version = "1.88.0"
[dependencies]
smccc = { version = "0.2.2", optional = true }
[dev-dependencies]
aarch64-paging = { version = "0.12.0", default-features = false }
arm-pl011-uart = "0.5.0"
smccc = "0.2.2"
[features]
default = ["exceptions", "initial-pagetable", "psci"]
el1 = []
el2 = []
el3 = []
exceptions = []
initial-pagetable = []
psci = ["dep:smccc"]
[package.metadata.docs.rs]
default-target = "aarch64-unknown-none"