33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "embassy-examples"
|
|
version = "0.1.0"
|
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
|
edition = "2024"
|
|
description = "Embassy examples for the Zynq7000 SoC"
|
|
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-ar = { path = "/home/rmueller/Rust/cortex-ar/cortex-ar", features = ["critical-section-single-core"] }
|
|
zynq7000-rt = { path = "../../zynq7000-rt" }
|
|
zynq7000 = { path = "../../zynq7000" }
|
|
zynq7000-hal = { path = "../../zynq7000-hal" }
|
|
zynq7000-embassy = { path = "../../zynq7000-embassy" }
|
|
static_cell = "2"
|
|
critical-section = "1"
|
|
heapless = "0.8"
|
|
embedded-io = "0.6"
|
|
embedded-hal = "1"
|
|
fugit = "0.3"
|
|
log = "0.4"
|
|
|
|
embassy-executor = { path = "/home/rmueller/Rust/embassy/embassy-executor", features = [
|
|
"arch-cortex-ar",
|
|
"executor-thread",
|
|
"task-arena-size-65536"
|
|
]}
|
|
embassy-time = { path = "/home/rmueller/Rust/embassy/embassy-time", version = "0.4" }
|