20 lines
889 B
TOML
20 lines
889 B
TOML
[package]
|
|
name = "zynq7000-embassy"
|
|
version = "0.1.0"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
edition = "2024"
|
|
description = "Embassy-rs support 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", "embassy", "amd", "zynq7000"]
|
|
categories = ["embedded", "no-std", "hardware-support"]
|
|
|
|
[dependencies]
|
|
critical-section = "1"
|
|
once_cell = { version = "1", default-features = false, features = ["critical-section"] }
|
|
zynq7000-hal = { path = "../zynq7000-hal" }
|
|
|
|
embassy-time-driver = { git = "https://github.com/us-irs/embassy", branch = "add-cortex-ar-support", version = "0.2" }
|
|
embassy-time-queue-utils = { git = "https://github.com/us-irs/embassy", branch = "add-cortex-ar-support", version = "0.1" }
|