forked from M-Labs/artiq
807eb1155b
Fixes #902.
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
authors = ["M-Labs"]
|
|
name = "runtime"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "runtime"
|
|
crate-type = ["staticlib"]
|
|
path = "main.rs"
|
|
|
|
[build-dependencies]
|
|
build_misoc = { path = "../libbuild_misoc" }
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1.0", default-features = false }
|
|
cslice = { version = "0.3" }
|
|
log = { version = "0.4", default-features = false }
|
|
board = { path = "../libboard", features = ["uart_console", "smoltcp"] }
|
|
alloc_list = { path = "../liballoc_list" }
|
|
std_artiq = { path = "../libstd_artiq", features = ["alloc", "io_error_alloc"] }
|
|
logger_artiq = { path = "../liblogger_artiq" }
|
|
backtrace_artiq = { path = "../libbacktrace_artiq" }
|
|
board_artiq = { path = "../libboard_artiq" }
|
|
proto = { path = "../libproto", features = ["log"] }
|
|
amp = { path = "../libamp" }
|
|
drtioaux = { path = "../libdrtioaux" }
|
|
|
|
[dependencies.fringe]
|
|
git = "https://github.com/m-labs/libfringe"
|
|
rev = "bd23494"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dependencies.smoltcp]
|
|
git = "https://github.com/m-labs/smoltcp"
|
|
rev = "181083f"
|
|
default-features = false
|
|
features = ["alloc", "log", "proto-ipv4", "socket-tcp"]
|