2019-12-18 06:35:58 +08:00
|
|
|
[package]
|
2020-01-31 05:54:48 +08:00
|
|
|
name = "libsupport_zynq"
|
|
|
|
description = "Software support for running in the Zynq PS"
|
2019-12-18 06:35:58 +08:00
|
|
|
version = "0.0.0"
|
2020-09-09 19:36:25 +08:00
|
|
|
authors = ["M-Labs"]
|
2019-12-18 06:35:58 +08:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
2020-01-22 07:44:36 +08:00
|
|
|
target_zc706 = ["libboard_zynq/target_zc706"]
|
2020-11-14 00:56:47 +08:00
|
|
|
target_coraz7 = ["libboard_zynq/target_coraz7"]
|
2020-09-09 20:10:05 +08:00
|
|
|
target_redpitaya = ["libboard_zynq/target_redpitaya"]
|
2020-11-20 02:41:38 +08:00
|
|
|
target_kasli_soc = ["libboard_zynq/target_kasli_soc"]
|
2020-06-29 09:41:54 +08:00
|
|
|
panic_handler = []
|
2020-08-03 13:24:25 +08:00
|
|
|
dummy_irq_handler = []
|
2020-07-20 11:09:04 +08:00
|
|
|
alloc_core = []
|
2020-06-29 09:41:54 +08:00
|
|
|
|
2020-08-03 13:24:25 +08:00
|
|
|
default = ["panic_handler", "dummy_irq_handler"]
|
2019-12-18 06:35:58 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-26 04:50:04 +08:00
|
|
|
r0 = "1"
|
2020-11-14 02:40:38 +08:00
|
|
|
compiler_builtins = "=0.1.35"
|
2020-12-24 07:52:14 +08:00
|
|
|
linked_list_allocator = { version = "0.8", default-features = false, features = ["const_mut_refs"] }
|
2019-12-18 06:35:58 +08:00
|
|
|
libregister = { path = "../libregister" }
|
|
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
|
|
libboard_zynq = { path = "../libboard_zynq" }
|