2017-01-19 06:50:32 +08:00
|
|
|
[package]
|
|
|
|
authors = ["M-Labs"]
|
|
|
|
name = "satman"
|
|
|
|
version = "0.0.0"
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "satman"
|
|
|
|
crate-type = ["staticlib"]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2017-01-25 05:15:41 +08:00
|
|
|
[build-dependencies]
|
|
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
|
2017-01-19 06:50:32 +08:00
|
|
|
[dependencies]
|
|
|
|
alloc_artiq = { path = "../liballoc_artiq" }
|
|
|
|
std_artiq = { path = "../libstd_artiq", features = ["alloc"] }
|
2017-01-25 05:55:51 +08:00
|
|
|
logger_artiq = { path = "../liblogger_artiq" }
|
2017-01-27 23:26:40 +08:00
|
|
|
board = { path = "../libboard", features = ["uart_console"] }
|
2017-02-22 15:26:32 +08:00
|
|
|
drtioaux = { path = "../libdrtioaux" }
|
2017-01-19 06:50:32 +08:00
|
|
|
log = { version = "0.3", default-features = false }
|
2017-02-03 20:12:41 +08:00
|
|
|
|
|
|
|
[dependencies.compiler_builtins]
|
|
|
|
git = "https://github.com/rust-lang-nursery/compiler-builtins"
|
|
|
|
features = ["mem"]
|