artiq/artiq/firmware/ksupport/Cargo.toml
whitequark 2a81819eb0 firmware: restructure to avoid #[path = "..."] mod ...;
Such code is fragile, introduces mess in dependencies, and
inflates compile times.
2017-02-25 17:54:14 +00:00

24 lines
534 B
TOML

[package]
authors = ["M-Labs"]
name = "ksupport"
version = "0.0.0"
build = "build.rs"
[lib]
name = "ksupport"
path = "lib.rs"
crate-type = ["staticlib"]
[build-dependencies]
build_artiq = { path = "../libbuild_artiq" }
[dependencies]
byteorder = { version = "1.0", default-features = false }
cslice = { version = "0.3" }
alloc_none = { path = "../liballoc_none" }
std_artiq = { path = "../libstd_artiq" }
dyld = { path = "../libdyld" }
board = { path = "../libboard" }
proto = { path = "../libproto" }
amp = { path = "../libamp" }