35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
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]
|
|
static_assertions = "1.1"
|
|
derive-mmio = { path = "../../derive-mmio", default-features = false }
|
|
bitbybit = "1.3"
|
|
arbitrary-int = "1.3"
|
|
thiserror = { version = "2", default-features = false }
|
|
num_enum = { version = "0.7", default-features = false }
|
|
critical-section = "1"
|
|
embassy-time-driver = "0.2"
|
|
embassy-time-queue-utils = "0.1"
|
|
# cortex-r
|
|
# defmt = { version = "0.3", optional = true }
|
|
# critical-section = { version = "1", optional = true }
|
|
|
|
[features]
|
|
# Adds Debug implementation
|
|
debug = []
|
|
std = ["thiserror/std"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--generate-link-to-definition"]
|