2020-04-28 19:07:49 +08:00
|
|
|
[package]
|
|
|
|
name = "szl"
|
|
|
|
description = "Simple Zynq Loader"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706"]
|
|
|
|
default = ["target_zc706"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
2020-09-01 09:39:21 +08:00
|
|
|
byteorder = { version = "1.3", default-features = false }
|
|
|
|
core_io = { version = "0.1", features = ["collections"] }
|
|
|
|
|
|
|
|
libconfig = { path = "../libconfig" }
|
2020-08-06 20:33:23 +08:00
|
|
|
libboard_zynq = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
2020-09-01 09:39:21 +08:00
|
|
|
libsupport_zynq = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
2020-08-06 20:33:23 +08:00
|
|
|
libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
2020-09-01 09:39:21 +08:00
|
|
|
libregister = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
2020-07-02 11:36:38 +08:00
|
|
|
|