artiq/artiq/firmware/runtime/Cargo.toml

38 lines
1.1 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 }
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"
2017-09-23 03:05:18 +08:00
rev = "64369d9"
default-features = false
2017-03-07 15:25:00 +08:00
features = ["alloc", "collections", "log"]#, "verbose"]