26 lines
742 B
TOML
26 lines
742 B
TOML
|
[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]
|
||
|
# cortex-ra
|
||
|
vcell = "0.1.3"
|
||
|
defmt = { version = "0.3", optional = true }
|
||
|
critical-section = { version = "1", optional = true }
|
||
|
|
||
|
[features]
|
||
|
# Adds Debug implementation
|
||
|
debug = []
|
||
|
|
||
|
[package.metadata.docs.rs]
|
||
|
all-features = true
|
||
|
rustdoc-args = ["--generate-link-to-definition"]
|