blob: c2cd8bc140e6dbebf693d0902d2e764aadd82e5d [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"
6version = "0.1.0"
7authors = [
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"
14repository = "https://git.trustedfirmware.org/rust-spmc/rust-spmc.git"
15keywords = ["arm", "aarch64", "spmc", "ff-a", "firmware"]
16
17[dependencies]
18num_enum = { version = "0.7", default-features = false }
Andrew Walbran44029a02024-11-25 15:34:31 +000019thiserror = { version = "2.0.3", default-features = false }
Balint Dobszay5bf492f2024-07-29 17:21:32 +020020uuid = { version = "1.10", default-features = false }
Balint Dobszayb2ff2bc2024-12-19 18:59:38 +010021zerocopy = "0.8"
22zerocopy-derive = "0.8"