22 lines
587 B
TOML
22 lines
587 B
TOML
[package]
|
|
name = "libsupport_zynq"
|
|
description = "Software support for running in the Zynq PS"
|
|
version = "0.0.0"
|
|
authors = ["Astro <astro@spaceboyz.net>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
target_zc706 = ["libboard_zynq/target_zc706"]
|
|
target_cora_z7_10 = ["libboard_zynq/target_cora_z7_10"]
|
|
panic_handler = []
|
|
|
|
default = ["panic_handler"]
|
|
|
|
[dependencies]
|
|
r0 = "1"
|
|
compiler_builtins = "0.1"
|
|
linked_list_allocator = { version = "0.8", default-features = false }
|
|
libregister = { path = "../libregister" }
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
libboard_zynq = { path = "../libboard_zynq" }
|