2019-12-18 07:06:10 +08:00
|
|
|
[package]
|
2020-01-26 08:45:02 +08:00
|
|
|
name = "experiments"
|
2020-01-22 07:47:22 +08:00
|
|
|
description = "Developing bare-metal Rust on Zynq"
|
2019-12-18 07:06:10 +08:00
|
|
|
version = "0.0.0"
|
|
|
|
authors = ["Astro <astro@spaceboyz.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[features]
|
2020-01-31 05:54:48 +08:00
|
|
|
target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706"]
|
|
|
|
target_cora_z7_10 = ["libboard_zynq/target_cora_z7_10", "libsupport_zynq/target_cora_z7_10"]
|
2019-12-18 07:06:10 +08:00
|
|
|
default = ["target_zc706"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-04-21 05:40:01 +08:00
|
|
|
log = "0.4"
|
2020-04-25 07:18:49 +08:00
|
|
|
embedded-hal = "0.2"
|
2019-12-18 07:06:10 +08:00
|
|
|
libregister = { path = "../libregister" }
|
|
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
|
|
libboard_zynq = { path = "../libboard_zynq" }
|
2020-08-03 13:24:25 +08:00
|
|
|
libsupport_zynq = { path = "../libsupport_zynq", default-features = false, features = ["panic_handler"]}
|
2020-03-26 08:35:05 +08:00
|
|
|
libasync = { path = "../libasync" }
|