artiq/artiq/runtime.rs/Cargo.toml

26 lines
570 B
TOML
Raw Normal View History

2016-08-17 16:39:05 +08:00
[package]
authors = ["The ARTIQ Project Developers"]
name = "runtime"
version = "0.0.0"
2016-09-30 06:04:52 +08:00
build = "build.rs"
[build-dependencies]
walkdir = "0.1"
2016-08-17 16:39:05 +08:00
[lib]
name = "artiq_rust"
crate-type = ["staticlib"]
path = "src/lib.rs"
[dependencies]
std_artiq = { path = "libstd_artiq" }
lwip = { path = "liblwip" }
fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] }
2016-09-29 02:25:25 +08:00
log = { version = "0.3", default-features = false }
log_buffer = { version = "1.0" }
byteorder = { version = "0.5", default-features = false }
2016-08-30 19:20:04 +08:00
2016-08-17 16:39:05 +08:00
[profile.dev]
panic = 'abort'
opt-level = 2