artiq/artiq/firmware/runtime/Cargo.toml

37 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]
alloc_artiq = { path = "../liballoc_artiq" }
std_artiq = { path = "../libstd_artiq", features = ["alloc"] }
logger_artiq = { path = "../liblogger_artiq" }
cslice = { version = "0.3" }
log = { version = "0.3", default-features = false, features = ["max_level_debug"] }
board = { path = "../libboard", features = ["uart_console"] }
dyld = { path = "../libdyld" }
drtioaux = { path = "../libdrtioaux" }
fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] }
byteorder = { version = "1.0", default-features = false }
[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 = "e8ece3e"
default-features = false
features = ["use_alloc", "use_collections", "use_log"]#, "verbose"]