Imre Kis | a337691 | 2025-02-13 13:13:30 +0100 | [diff] [blame] | 1 | # 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] |
| 5 | name = "arm-psci" |
| 6 | version = "0.1.0" |
| 7 | authors = [ |
| 8 | "Balint Dobszay <balint.dobszay@arm.com>", |
| 9 | "Imre Kis <imre.kis@arm.com>", |
| 10 | ] |
| 11 | description = "Arm Power State Coordination Interface (PSCI) library" |
| 12 | edition = "2021" |
| 13 | license = "MIT OR Apache-2.0" |
| 14 | repository = "https://git.trustedfirmware.org/rust-spmc/arm-psci.git" |
| 15 | keywords = ["arm", "psci", "power", "coordination", "interface"] |
| 16 | categories = ["hardware-support", "embedded", "no-std", "no-std::no-alloc"] |
| 17 | readme = "README.md" |
| 18 | rust-version = "1.82" |
| 19 | |
| 20 | [dependencies] |
Imre Kis | 562ee3a | 2025-03-06 10:08:49 +0100 | [diff] [blame] | 21 | bitflags = "2.9" |
Imre Kis | 90e9d83 | 2025-02-13 13:42:51 +0100 | [diff] [blame] | 22 | num_enum = { version = "0.7", default-features = false } |
| 23 | thiserror = { version = "2.0", default-features = false } |