blob: 008c5a7869b21facab1f95136e7586ce1a3ea3c1 [file] [log] [blame]
Balint Dobszay5bf492f2024-07-29 17:21:32 +02001# SPDX-FileCopyrightText: Copyright 2023 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-ffa"
Balint Dobszay9f0ef692025-06-16 17:42:29 +02006version = "0.3.0"
Balint Dobszay5bf492f2024-07-29 17:21:32 +02007authors = [
8 "Balint Dobszay <balint.dobszay@arm.com>",
9 "Imre Kis <imre.kis@arm.com>",
10]
11description = "Arm Firmware Framework for Arm A-profile support library"
12edition = "2021"
13license = "MIT OR Apache-2.0"
Balint Dobszay91597e12025-02-26 19:30:39 +010014repository = "https://git.trustedfirmware.org/rust-spmc/arm-ffa.git"
Balint Dobszay5bf492f2024-07-29 17:21:32 +020015keywords = ["arm", "aarch64", "spmc", "ff-a", "firmware"]
Balint Dobszay91597e12025-02-26 19:30:39 +010016categories = ["embedded", "no-std", "data-structures", "api-bindings"]
17readme = "README.md"
18rust-version = "1.82"
Balint Dobszay5bf492f2024-07-29 17:21:32 +020019
20[dependencies]
21num_enum = { version = "0.7", default-features = false }
Andrew Walbran44029a02024-11-25 15:34:31 +000022thiserror = { version = "2.0.3", default-features = false }
Balint Dobszay5bf492f2024-07-29 17:21:32 +020023uuid = { version = "1.10", default-features = false }
Balint Dobszayb2ff2bc2024-12-19 18:59:38 +010024zerocopy = "0.8"
25zerocopy-derive = "0.8"