| # SPDX-FileCopyrightText: Copyright 2024 Arm Limited and/or its affiliates <open-source-office@arm.com> |
| # SPDX-License-Identifier: MIT OR Apache-2.0 |
| |
| [package] |
| name = "arm-fvp-base-pac" |
| version = "0.1.0" |
| authors = [ |
| "Balint Dobszay <balint.dobszay@arm.com>", |
| "Imre Kis <imre.kis@arm.com>", |
| ] |
| description = "Arm Base Fixed Virtual Platform Peripheral Access Crate" |
| edition = "2021" |
| license = "MIT OR Apache-2.0" |
| repository = "https://git.trustedfirmware.org/rust-spmc/arm-fvp-base-pac.git" |
| keywords = ["arm", "fvp", "pac", "virtual", "platform"] |
| |
| [dependencies] |
| arm-gic = { git = "https://git.trustedfirmware.org/rust-spmc/arm-gic.git" } |
| arm-pl011-uart = { version = "0.3", default-features = false } |
| arm-sp805 = "0.1" |
| bitflags = "2.9" |
| safe-mmio = "0.2" |
| spin = { version = "0.9", default-features = false, features = ["spin_mutex"] } |
| zerocopy = { version = "0.8", features = ["derive"] } |
| |
| [features] |
| default = ["embedded-hal-nb", "embedded-io"] |
| embedded-hal-nb = ["arm-pl011-uart/embedded-hal-nb"] |
| embedded-io = ["arm-pl011-uart/embedded-io"] |