# Copyright 2022 Arm Limited and/or its affiliates # # SPDX-License-Identifier: MIT [package] name = "corstone300-hal" version = "0.1.0" edition = "2021" authors = ["Arm Ltd."] license = "MIT" description = """ Hardware abstraction layer Crate for the Arm(R) Corstone(TM)-300 Reference System """ repository = "https://gitlab.arm.com/firmware/corstone-hal-rs" [dependencies] corstone300-pac = { path = "../corstone300-pac", version = "0.2.0", features = ["critical-section"] } cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] } embedded-hal = { version = "0.2.7", features = ["unproven"] } eh1-0-alpha = { package = "embedded-hal", version = "=1.0.0-alpha.8", optional = true } fugit = "0.3.6" nb = "1.0.0" [features] rt = ["corstone300-pac/rt"]