blob: 8a277dcd4c449761e180b7c11f9fc4916473604a [file] [log] [blame]
Imre Kisa3376912025-02-13 13:13:30 +01001# SPDX-FileCopyrightText: Copyright 2025 Arm Limited and/or its affiliates <open-source-office@arm.com>
2# SPDX-License-Identifier: MIT OR Apache-2.0
3
4[package]
5name = "arm-psci"
6version = "0.1.0"
7authors = [
8 "Balint Dobszay <balint.dobszay@arm.com>",
9 "Imre Kis <imre.kis@arm.com>",
10]
11description = "Arm Power State Coordination Interface (PSCI) library"
12edition = "2021"
13license = "MIT OR Apache-2.0"
14repository = "https://git.trustedfirmware.org/rust-spmc/arm-psci.git"
15keywords = ["arm", "psci", "power", "coordination", "interface"]
16categories = ["hardware-support", "embedded", "no-std", "no-std::no-alloc"]
17readme = "README.md"
18rust-version = "1.82"
19
20[dependencies]
Imre Kis562ee3a2025-03-06 10:08:49 +010021bitflags = "2.9"
Imre Kis90e9d832025-02-13 13:42:51 +010022num_enum = { version = "0.7", default-features = false }
23thiserror = { version = "2.0", default-features = false }