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]
|
2021-10-06 13:05:45 +08:00
|
|
|
target_zc706 = ["libboard_zynq/target_zc706", "libsupport_zynq/target_zc706", "libconfig/target_zc706", "libboard_artiq/target_zc706"]
|
|
|
|
target_kasli_soc = ["libboard_zynq/target_kasli_soc", "libsupport_zynq/target_kasli_soc", "libconfig/target_kasli_soc", "libboard_artiq/target_kasli_soc"]
|
2020-04-11 20:19:39 +08:00
|
|
|
default = ["target_zc706"]
|
|
|
|
|
2021-10-06 13:05:45 +08:00
|
|
|
[build-dependencies]
|
|
|
|
build_zynq = { path = "../libbuild_zynq" }
|
|
|
|
|
2020-04-11 20:19:39 +08:00
|
|
|
[dependencies]
|
2020-04-12 18:40:15 +08:00
|
|
|
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"
|
2020-07-08 19:58:13 +08:00
|
|
|
embedded-hal = "0.2"
|
2020-06-18 11:33:18 +08:00
|
|
|
core_io = { version = "0.1", features = ["collections"] }
|
2020-06-05 17:14:36 +08:00
|
|
|
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"
|
2020-07-13 15:00:53 +08:00
|
|
|
log_buffer = { version = "1.2" }
|
2020-08-04 17:32:43 +08:00
|
|
|
vcell = "0.1"
|
2020-07-08 19:58:13 +08:00
|
|
|
|
2023-10-09 18:27:58 +08:00
|
|
|
libboard_zynq = { path = "@@ZYNQ_RS@@/libboard_zynq", features = ["ipv6"]}
|
|
|
|
libsupport_zynq = { path = "@@ZYNQ_RS@@/libsupport_zynq", default-features = false, features = ["alloc_core"] }
|
|
|
|
libcortex_a9 = { path = "@@ZYNQ_RS@@/libcortex_a9" }
|
|
|
|
libasync = { path = "@@ZYNQ_RS@@/libasync" }
|
|
|
|
libregister = { path = "@@ZYNQ_RS@@/libregister" }
|
|
|
|
libconfig = { path = "@@ZYNQ_RS@@/libconfig", features = ["fat_lfn", "ipv6"] }
|
2020-07-08 19:58:13 +08:00
|
|
|
|
2020-04-12 18:40:15 +08:00
|
|
|
dyld = { path = "../libdyld" }
|
2020-06-30 17:22:44 +08:00
|
|
|
dwarf = { path = "../libdwarf" }
|
2020-06-30 17:19:09 +08:00
|
|
|
unwind = { path = "../libunwind" }
|
|
|
|
libc = { path = "../libc" }
|
2023-09-06 16:44:54 +08:00
|
|
|
io = { path = "../libio", features = ["alloc"] }
|
2023-09-05 16:21:39 +08:00
|
|
|
ksupport = { path = "../libksupport" }
|
2023-10-31 17:24:55 +08:00
|
|
|
libboard_artiq = { path = "../libboard_artiq" }
|
|
|
|
|
|
|
|
[dependencies.tar-no-std]
|
|
|
|
git = "https://git.m-labs.hk/M-Labs/tar-no-std"
|
|
|
|
rev = "2ab6dc5"
|