forked from M-Labs/zynq-rs
24 lines
759 B
TOML
24 lines
759 B
TOML
[package]
|
|
name = "experiments"
|
|
description = "Developing bare-metal Rust on Zynq"
|
|
version = "0.0.0"
|
|
authors = ["Astro <astro@spaceboyz.net>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
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]
|
|
libregister = { path = "../libregister" }
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
libboard_zynq = { path = "../libboard_zynq" }
|
|
libboard_zc706 = { path = "../libboard_zc706" }
|
|
|
|
[dependencies.smoltcp]
|
|
git = "https://github.com/m-labs/smoltcp.git"
|
|
rev = "8eb01aca364aefe5f823d68d552d62c76c9be4a3"
|
|
features = ["ethernet", "proto-ipv4", "socket-tcp"]
|
|
default-features = false
|