2016-08-17 16:39:05 +08:00
|
|
|
[package]
|
2016-12-16 19:05:26 +08:00
|
|
|
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]
|
2016-10-01 12:20:27 +08:00
|
|
|
name = "runtime"
|
2016-08-17 16:39:05 +08:00
|
|
|
crate-type = ["staticlib"]
|
2017-12-28 16:16:44 +08:00
|
|
|
path = "main.rs"
|
2016-08-17 16:39:05 +08:00
|
|
|
|
2017-01-25 05:15:41 +08:00
|
|
|
[build-dependencies]
|
2017-12-28 20:57:40 +08:00
|
|
|
build_misoc = { path = "../libbuild_misoc" }
|
2017-01-25 05:15:41 +08:00
|
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
|
2016-08-17 16:39:05 +08:00
|
|
|
[dependencies]
|
2017-02-26 01:54:14 +08:00
|
|
|
byteorder = { version = "1.0", default-features = false }
|
|
|
|
cslice = { version = "0.3" }
|
2018-01-01 19:45:55 +08:00
|
|
|
log = { version = "0.4", default-features = false }
|
2018-05-05 07:44:51 +08:00
|
|
|
managed = { version = "0.6", default-features = false, features = ["alloc", "map"] }
|
2018-05-14 15:32:55 +08:00
|
|
|
unwind_backtrace = { path = "../libunwind_backtrace" }
|
2017-12-28 22:40:15 +08:00
|
|
|
board = { path = "../libboard", features = ["uart_console", "smoltcp"] }
|
2017-09-25 01:49:34 +08:00
|
|
|
alloc_list = { path = "../liballoc_list" }
|
2017-04-22 01:20:50 +08:00
|
|
|
std_artiq = { path = "../libstd_artiq", features = ["alloc", "io_error_alloc"] }
|
2017-01-25 05:55:51 +08:00
|
|
|
logger_artiq = { path = "../liblogger_artiq" }
|
2017-12-28 15:06:45 +08:00
|
|
|
board_artiq = { path = "../libboard_artiq" }
|
2017-02-26 01:54:14 +08:00
|
|
|
proto = { path = "../libproto", features = ["log"] }
|
|
|
|
amp = { path = "../libamp" }
|
2017-02-22 15:26:32 +08:00
|
|
|
drtioaux = { path = "../libdrtioaux" }
|
2017-01-16 22:15:24 +08:00
|
|
|
|
2017-09-25 01:49:34 +08:00
|
|
|
[dependencies.fringe]
|
|
|
|
git = "https://github.com/m-labs/libfringe"
|
|
|
|
rev = "bd23494"
|
|
|
|
default-features = false
|
|
|
|
features = ["alloc"]
|
|
|
|
|
2017-01-16 22:15:24 +08:00
|
|
|
[dependencies.smoltcp]
|
|
|
|
git = "https://github.com/m-labs/smoltcp"
|
2018-01-30 11:29:08 +08:00
|
|
|
rev = "181083f"
|
2017-01-16 22:15:24 +08:00
|
|
|
default-features = false
|
2017-12-26 22:33:56 +08:00
|
|
|
features = ["alloc", "log", "proto-ipv4", "socket-tcp"]
|