18 lines
508 B
TOML
18 lines
508 B
TOML
|
|
[package]
|
||
|
|
name = "psci"
|
||
|
|
version = "0.1.3"
|
||
|
|
edition = "2021"
|
||
|
|
license = "MIT OR Apache-2.0"
|
||
|
|
description = "Functions and constants for the Arm SMC Calling Convention (SMCCC) 1.4 and Arm Power State Coordination Interface (PSCI) 1.1 on aarch64."
|
||
|
|
authors = ["Andrew Walbran <qwandor@google.com>"]
|
||
|
|
repository = "https://github.com/google/psci"
|
||
|
|
keywords = ["arm", "aarch64", "cortex-a", "psci"]
|
||
|
|
categories = ["embedded", "no-std", "hardware-support"]
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["hvc"]
|
||
|
|
hvc = []
|
||
|
|
smc = []
|
||
|
|
|
||
|
|
[dependencies]
|