forked from M-Labs/zynq-rs
26 lines
761 B
TOML
26 lines
761 B
TOML
[package]
|
|
name = "libsupport_zynq"
|
|
description = "Software support for running in the Zynq PS"
|
|
version = "0.0.0"
|
|
authors = ["M-Labs"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
target_zc706 = ["libboard_zynq/target_zc706"]
|
|
target_coraz7 = ["libboard_zynq/target_coraz7"]
|
|
target_redpitaya = ["libboard_zynq/target_redpitaya"]
|
|
target_kasli_soc = ["libboard_zynq/target_kasli_soc"]
|
|
panic_handler = []
|
|
dummy_irq_handler = []
|
|
alloc_core = []
|
|
|
|
default = ["panic_handler", "dummy_irq_handler"]
|
|
|
|
[dependencies]
|
|
r0 = "1"
|
|
compiler_builtins = "=0.1.35"
|
|
linked_list_allocator = { version = "0.8", default-features = false, features = ["const_mut_refs"] }
|
|
libregister = { path = "../libregister" }
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
libboard_zynq = { path = "../libboard_zynq" }
|