2020-09-09 17:56:50 +08:00
|
|
|
[package]
|
|
|
|
name = "szl"
|
|
|
|
description = "Simple Zynq Loader"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
2020-10-14 12:53:32 +08:00
|
|
|
target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706", "libconfig/target_zc706"]
|
2020-11-11 03:57:31 +08:00
|
|
|
target_cora_z7_10 = ["libboard_zynq/target_cora_z7_10", "libsupport_zynq/target_cora_z7_10", "libconfig/target_cora_z7_10"]
|
2020-10-14 12:53:32 +08:00
|
|
|
target_redpitaya = ["libboard_zynq/target_redpitaya", "libsupport_zynq/target_redpitaya", "libconfig/target_redpitaya"]
|
2020-09-09 17:56:50 +08:00
|
|
|
default = ["target_zc706"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
|
|
|
byteorder = { version = "1.3", default-features = false }
|
|
|
|
core_io = { version = "0.1", features = ["collections"] }
|
|
|
|
|
|
|
|
libboard_zynq = { path = "../libboard_zynq" }
|
|
|
|
libsupport_zynq = { path = "../libsupport_zynq" }
|
|
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
|
|
libregister = { path = "../libregister" }
|
|
|
|
libconfig = { path = "../libconfig" }
|