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"]
|
2016-12-16 19:05:26 +08:00
|
|
|
path = "lib.rs"
|
2016-08-17 16:39:05 +08:00
|
|
|
|
2017-01-25 05:15:41 +08:00
|
|
|
[build-dependencies]
|
|
|
|
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" }
|
2017-03-03 14:06:26 +08:00
|
|
|
log = { version = "0.3", default-features = false }
|
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" }
|
|
|
|
board = { path = "../libboard", features = ["uart_console"] }
|
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-02-03 20:12:41 +08:00
|
|
|
[dependencies.compiler_builtins]
|
|
|
|
git = "https://github.com/rust-lang-nursery/compiler-builtins"
|
2017-02-05 23:25:43 +08:00
|
|
|
rev = "631b568"
|
2017-02-03 20:12:41 +08:00
|
|
|
features = ["mem"]
|
|
|
|
|
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"
|
2017-12-19 23:51:03 +08:00
|
|
|
rev = "960b001"
|
2017-01-16 22:15:24 +08:00
|
|
|
default-features = false
|
2017-11-22 16:09:06 +08:00
|
|
|
features = ["alloc", "log", "socket-tcp"]
|