2016-08-17 16:39:05 +08:00
|
|
|
[package]
|
2016-12-16 19:05:26 +08:00
|
|
|
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]
|
2016-10-01 12:20:27 +08:00
|
|
|
name = "runtime"
|
2016-08-17 16:39:05 +08:00
|
|
|
crate-type = ["staticlib"]
|
2016-12-16 19:05:26 +08:00
|
|
|
path = "lib.rs"
|
2016-08-17 16:39:05 +08:00
|
|
|
|
2017-01-25 05:15:41 +08:00
|
|
|
[build-dependencies]
|
|
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
|
2016-08-17 16:39:05 +08:00
|
|
|
[dependencies]
|
2016-12-31 21:26:31 +08:00
|
|
|
alloc_artiq = { path = "../liballoc_artiq" }
|
2016-12-16 19:05:26 +08:00
|
|
|
std_artiq = { path = "../libstd_artiq", features = ["alloc"] }
|
2017-01-25 05:55:51 +08:00
|
|
|
logger_artiq = { path = "../liblogger_artiq" }
|
2017-01-25 14:50:52 +08:00
|
|
|
log = { version = "0.3", default-features = false, features = ["max_level_debug"] }
|
2017-01-25 05:55:51 +08:00
|
|
|
board = { path = "../libboard", features = ["uart_console"] }
|
|
|
|
fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] }
|
2017-01-16 22:15:24 +08:00
|
|
|
byteorder = { version = "1.0", default-features = false }
|
|
|
|
|
|
|
|
[dependencies.smoltcp]
|
|
|
|
git = "https://github.com/m-labs/smoltcp"
|
2017-01-27 01:35:42 +08:00
|
|
|
rev = "ebee5b7"
|
2017-01-16 22:15:24 +08:00
|
|
|
default-features = false
|
|
|
|
features = ["use_alloc", "use_collections", "use_log"]#, "verbose"]
|