30 lines
664 B
TOML
30 lines
664 B
TOML
[package]
|
|
name = "libboard_zynq"
|
|
description = "Drivers for peripherals in the Zynq PS"
|
|
version = "0.0.0"
|
|
authors = ["M-Labs"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
target_zc706 = []
|
|
target_coraz7 = []
|
|
target_redpitaya = []
|
|
target_kasli_soc = []
|
|
ipv6 = [ "smoltcp/proto-ipv6" ]
|
|
|
|
[dependencies]
|
|
volatile-register = "0.2"
|
|
bit_field = "0.10"
|
|
embedded-hal = "0.2"
|
|
nb = "0.1"
|
|
void = { version = "1", default-features = false }
|
|
log = "0.4"
|
|
libregister = { path = "../libregister" }
|
|
libcortex_a9 = { path = "../libcortex_a9" }
|
|
libasync = { path = "../libasync" }
|
|
|
|
[dependencies.smoltcp]
|
|
version = "0.7"
|
|
features = ["ethernet", "proto-ipv4", "socket-tcp"]
|
|
default-features = false
|