forked from M-Labs/artiq
38 lines
1.1 KiB
TOML
38 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 = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
[dependencies]
|
|
byteorder = { version = "1.0", default-features = false }
|
|
cslice = { version = "0.3" }
|
|
log = { version = "0.3", default-features = false }
|
|
fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] }
|
|
alloc_artiq = { path = "../liballoc_artiq" }
|
|
std_artiq = { path = "../libstd_artiq", features = ["alloc", "io_error_alloc"] }
|
|
logger_artiq = { path = "../liblogger_artiq" }
|
|
board = { path = "../libboard", features = ["uart_console"] }
|
|
proto = { path = "../libproto", features = ["log"] }
|
|
amp = { path = "../libamp" }
|
|
drtioaux = { path = "../libdrtioaux" }
|
|
|
|
[dependencies.compiler_builtins]
|
|
git = "https://github.com/rust-lang-nursery/compiler-builtins"
|
|
rev = "631b568"
|
|
features = ["mem"]
|
|
|
|
[dependencies.smoltcp]
|
|
git = "https://github.com/m-labs/smoltcp"
|
|
rev = "f76b4be"
|
|
default-features = false
|
|
features = ["alloc", "collections", "log"]#, "verbose"]
|