27 lines
843 B
TOML
Raw Normal View History

2025-02-20 22:55:58 +01:00
[package]
2025-02-23 16:14:12 +01:00
name = "zynq7000-rt"
2025-02-20 22:55:58 +01:00
version = "0.1.0"
2025-02-25 10:52:04 +01:00
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
2025-02-20 22:55:58 +01:00
edition = "2024"
2025-02-25 10:52:04 +01:00
description = "Run-time support for the Zynq7000 family of SoCs for running bare-metal applications"
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"]
2025-02-20 22:55:58 +01:00
[dependencies]
2025-02-26 13:26:35 +01:00
cortex-a-rt = { path = "../../cortex-ar/cortex-a-rt", optional = true, features = ["vfp-dp"] }
cortex-ar = { path = "../../cortex-ar/cortex-ar" }
2025-02-23 12:25:36 +01:00
[features]
default = ["rt"]
2025-02-25 10:52:04 +01:00
tools = []
2025-02-24 12:29:02 +01:00
rt = ["dep:cortex-a-rt"]
2025-02-25 10:52:04 +01:00
[[bin]]
name = "table-gen"
path = "src/bin/table-gen.rs"
# Prevents default build
required-features = ["tools"]