zynq7000-rs/zynq7000/Cargo.toml

29 lines
865 B
TOML
Raw Normal View History

2025-02-25 10:52:04 +01:00
[package]
name = "zynq7000"
version = "0.1.0"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2024"
description = "PAC for the Zynq7000 family of SoCs"
homepage = "https://egit.irs.uni-stuttgart.de/rust/zynq7000-rs"
repository = "https://egit.irs.uni-stuttgart.de/rust/zynq7000-rs"
license = "MIT OR Apache-2.0"
keywords = ["no-std", "arm", "cortex-a", "amd", "zynq7000"]
categories = ["embedded", "no-std", "hardware-support"]
[dependencies]
2025-02-28 14:37:00 +01:00
static_assertions = "1.1"
2025-02-28 17:03:06 +01:00
derive-mmio = { path = "../../derive-mmio", default-features = false }
2025-02-26 22:25:21 +01:00
bitbybit = "1.3"
arbitrary-int = "1.3"
2025-02-26 13:26:35 +01:00
# cortex-r
# defmt = { version = "0.3", optional = true }
# critical-section = { version = "1", optional = true }
2025-02-25 10:52:04 +01:00
[features]
# Adds Debug implementation
debug = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--generate-link-to-definition"]