artiq/artiq/firmware/runtime/Cargo.toml

38 lines
1.3 KiB
TOML
Raw Normal View History

2016-08-17 16:39:05 +08:00
[package]
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]
name = "runtime"
2016-08-17 16:39:05 +08:00
crate-type = ["staticlib"]
path = "main.rs"
2016-08-17 16:39:05 +08:00
[build-dependencies]
build_misoc = { path = "../libbuild_misoc" }
2016-08-17 16:39:05 +08:00
[dependencies]
failure = { version = "0.1", default-features = false }
failure_derive = { version = "0.1", default-features = false }
byteorder = { version = "1.0", default-features = false }
cslice = { version = "0.3" }
2018-01-01 19:45:55 +08:00
log = { version = "0.4", default-features = false }
2021-08-06 11:07:47 +08:00
managed = { version = "^0.7.1", default-features = false, features = ["alloc", "map"] }
eh = { path = "../libeh" }
unwind_backtrace = { path = "../libunwind_backtrace" }
io = { path = "../libio", features = ["byteorder"] }
alloc_list = { path = "../liballoc_list" }
board_misoc = { path = "../libboard_misoc", features = ["uart_console", "smoltcp"] }
logger_artiq = { path = "../liblogger_artiq" }
board_artiq = { path = "../libboard_artiq" }
proto_artiq = { path = "../libproto_artiq", features = ["log", "alloc"] }
smoltcp = { version = "0.6.0", default-features = false, features = ["alloc", "ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp"] }
2021-08-06 11:05:17 +08:00
riscv = { version = "0.6.0", features = ["inline-asm"] }
[dependencies.fringe]
2021-08-25 12:03:04 +08:00
git = "https://git.m-labs.hk/M-Labs/libfringe.git"
rev = "3ecbe5"
default-features = false
features = ["alloc"]