blob: ede420aace49940bdbca6500061fe0e0233f245e [file] [log] [blame]
Sandrine Afsafdf43162025-07-09 14:18:38 +02001# SPDX-FileCopyrightText: Copyright The arm-psci Contributors.
Imre Kisa3376912025-02-13 13:13:30 +01002# SPDX-License-Identifier: MIT OR Apache-2.0
3
4[package]
5name = "arm-psci"
Imre Kis574b1f12025-03-31 14:37:31 +02006version = "0.1.2"
Imre Kisa3376912025-02-13 13:13:30 +01007authors = [
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 }