forked from M-Labs/artiq-zynq
33 lines
1.2 KiB
TOML
33 lines
1.2 KiB
TOML
|
[package]
|
||
|
name = "kernel"
|
||
|
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"] }
|
||
|
|
||
|
libboard_zynq = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["ipv6"]}
|
||
|
libsupport_zynq = { default-features = false, features = ["alloc_core"], git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
||
|
libcortex_a9 = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
||
|
libasync = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
||
|
libregister = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git" }
|
||
|
libconfig = { git = "https://git.m-labs.hk/M-Labs/zynq-rs.git", features = ["fat_lfn", "ipv6"] }
|
||
|
|
||
|
dyld = { path = "../libdyld" }
|
||
|
dwarf = { path = "../libdwarf" }
|
||
|
unwind = { path = "../libunwind" }
|
||
|
libc = { path = "../libc" }
|
||
|
io = { path = "../libio" }
|
||
|
libboard_artiq = { path = "../libboard_artiq" }
|