artiq/artiq/firmware/runtime/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2016-08-17 16:39:05 +08:00
[package]
authors = ["M-Labs"]
2016-08-17 16:39:05 +08:00
name = "runtime"
version = "0.0.0"
2016-09-30 06:04:52 +08:00
build = "build.rs"
2016-08-17 16:39:05 +08:00
[lib]
name = "runtime"
2016-08-17 16:39:05 +08:00
crate-type = ["staticlib"]
path = "lib.rs"
2016-08-17 16:39:05 +08:00
[build-dependencies]
build_artiq = { path = "../libbuild_artiq" }
2016-08-17 16:39:05 +08:00
[dependencies]
byteorder = { version = "1.0", default-features = false }
cslice = { version = "0.3" }
log = { version = "0.3", default-features = false }
board = { path = "../libboard", features = ["uart_console"] }
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.compiler_builtins]
git = "https://github.com/m-labs/compiler-builtins"
rev = "97916b1"
features = ["mem"]
[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"
2017-12-26 22:33:56 +08:00
rev = "507d2fe"
default-features = false
2017-12-26 22:33:56 +08:00
features = ["alloc", "log", "proto-ipv4", "socket-tcp"]