artiq-zynq/src/runtime/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

2020-04-11 20:19:39 +08:00
[package]
name = "runtime"
description = "ARTIQ runtime on Zynq"
version = "0.1.0"
2020-04-12 18:47:46 +08:00
authors = ["M-Labs"]
2020-04-11 20:19:39 +08:00
edition = "2018"
[features]
target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706"]
default = ["target_zc706"]
[dependencies]
num-traits = { version = "0.2", default-features = false }
num-derive = "0.3"
2020-04-12 20:15:01 +08:00
cslice = "0.3"
2020-04-22 07:03:58 +08:00
log = "0.4"
nb = "0.1"
embedded-hal = "0.2"
core_io = { version = "0.1", features = ["collections"] }
byteorder = { version = "1.3", default-features = false }
2020-04-25 20:31:38 +08:00
void = { version = "1", default-features = false }
futures = { version = "0.3", default-features = false, features = ["async-await"] }
2020-06-07 21:30:33 +08:00
async-recursion = "0.3"
fatfs = { version = "0.3", features = ["core_io"], default-features = false }
2020-07-13 15:00:53 +08:00
log_buffer = { version = "1.2" }
2020-07-21 13:50:33 +08:00
libm = { version = "0.2", features = ["unstable"] }
2020-04-11 20:19:39 +08:00
libboard_zynq = { git = "https://git.m-labs.hk/M-Labs/zc706.git" }
libsupport_zynq = { default-features = false, features = ["alloc_core"], git = "https://git.m-labs.hk/M-Labs/zc706.git" }
2020-04-13 13:48:08 +08:00
libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zc706.git" }
2020-04-11 22:24:23 +08:00
libasync = { git = "https://git.m-labs.hk/M-Labs/zc706.git" }
2020-07-07 19:40:32 +08:00
libregister = { git = "https://git.m-labs.hk/M-Labs/zc706.git" }
dyld = { path = "../libdyld" }
dwarf = { path = "../libdwarf" }
unwind = { path = "../libunwind" }
libc = { path = "../libc" }