artiq/artiq/firmware/runtime/Cargo.toml

42 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 = "main.rs"
2016-08-17 16:39:05 +08:00
[build-dependencies]
build_misoc = { path = "../libbuild_misoc" }
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" }
2018-01-01 19:45:55 +08:00
log = { version = "0.4", default-features = false }
managed = { version = "0.6", default-features = false, features = ["alloc", "map"] }
2017-12-28 22:40:15 +08:00
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"
2018-01-30 11:29:08 +08:00
rev = "181083f"
default-features = false
2017-12-26 22:33:56 +08:00
features = ["alloc", "log", "proto-ipv4", "socket-tcp"]