2023-09-04 16:04:42 +08:00
|
|
|
[package]
|
2023-09-05 16:21:39 +08:00
|
|
|
name = "ksupport"
|
2023-09-04 16:04:42 +08:00
|
|
|
description = "Kernel support for Zynq-based platforms"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
build_zynq = { path = "../libbuild_zynq" }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cslice = "0.3"
|
|
|
|
log = "0.4"
|
|
|
|
nb = "0.1"
|
|
|
|
core_io = { version = "0.1", features = ["collections"] }
|
|
|
|
byteorder = { version = "1.3", default-features = false }
|
|
|
|
void = { version = "1", default-features = false }
|
|
|
|
log_buffer = { version = "1.2" }
|
|
|
|
libm = { version = "0.2", features = ["unstable"] }
|
2023-10-09 17:10:45 +08:00
|
|
|
vcell = "0.1"
|
2023-09-04 16:04:42 +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"] }
|
2023-09-04 16:04:42 +08:00
|
|
|
|
|
|
|
dyld = { path = "../libdyld" }
|
|
|
|
dwarf = { path = "../libdwarf" }
|
|
|
|
unwind = { path = "../libunwind" }
|
|
|
|
libc = { path = "../libc" }
|
|
|
|
io = { path = "../libio" }
|
2023-10-09 18:27:58 +08:00
|
|
|
libboard_artiq = { path = "../libboard_artiq" }
|