Merge branch 'cora'

pull/14/head
Astro 2020-01-22 01:19:01 +01:00
commit d88ba97a03
3 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,13 @@
[package]
name = "zc706-experiments"
description = "Developing bare-metal Rust on Zynq"
version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
[features]
target_zc706 = []
target_cora_z7_10 = []
target_zc706 = ["libboard_zynq/target_zc706", "libboard_zc706/target_zc706"]
target_cora_z7_10 = ["libboard_zynq/target_cora_z7_10", "libboard_zc706/target_cora_z7_10"]
default = ["target_zc706"]
[dependencies]

View File

@ -1,14 +1,13 @@
[package]
name = "libboard_zc706"
description = "Software support for running on devboards"
version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
[features]
# TODO: propagate to libboard_zynq
target_zc706 = []
target_cora_z7_10 = []
default = ["target_zc706"]
target_zc706 = ["libboard_zynq/target_zc706"]
target_cora_z7_10 = ["libboard_zynq/target_cora_z7_10"]
[dependencies]
r0 = "0.2"

View File

@ -1,5 +1,6 @@
[package]
name = "libboard_zynq"
description = "Drivers for peripherals in the Zynq PS"
version = "0.0.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
@ -7,7 +8,6 @@ edition = "2018"
[features]
target_zc706 = []
target_cora_z7_10 = []
default = ["target_zc706"]
[dependencies]
r0 = "0.2"