2016-10-17 00:24:25 +08:00
|
|
|
[package]
|
2016-12-16 20:14:11 +08:00
|
|
|
authors = ["M-Labs"]
|
2016-10-17 00:24:25 +08:00
|
|
|
name = "ksupport"
|
|
|
|
version = "0.0.0"
|
2017-01-04 04:12:56 +08:00
|
|
|
build = "build.rs"
|
2016-10-17 00:24:25 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "ksupport"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["staticlib"]
|
|
|
|
|
2017-01-25 06:33:09 +08:00
|
|
|
[build-dependencies]
|
|
|
|
build_artiq = { path = "../libbuild_artiq" }
|
|
|
|
|
2016-10-30 05:34:25 +08:00
|
|
|
[dependencies]
|
2017-02-26 01:54:14 +08:00
|
|
|
byteorder = { version = "1.0", default-features = false }
|
|
|
|
cslice = { version = "0.3" }
|
2016-12-31 21:26:31 +08:00
|
|
|
alloc_none = { path = "../liballoc_none" }
|
2016-10-30 05:34:25 +08:00
|
|
|
std_artiq = { path = "../libstd_artiq" }
|
2017-02-25 02:57:29 +08:00
|
|
|
dyld = { path = "../libdyld" }
|
2017-02-26 01:54:14 +08:00
|
|
|
board = { path = "../libboard" }
|
|
|
|
proto = { path = "../libproto" }
|
|
|
|
amp = { path = "../libamp" }
|