forked from M-Labs/artiq
rust: fix dependencies
This commit is contained in:
parent
c800b6c8d3
commit
f56152e72f
|
@ -9,3 +9,5 @@ path = "lib.rs"
|
|||
|
||||
[dependencies]
|
||||
cslice = { version = "0.3" }
|
||||
libc = { path = "../libc" }
|
||||
unwind = { path = "../libunwind" }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(lang_items, panic_unwind, libc, unwind_attributes)]
|
||||
#![feature(lang_items, panic_unwind, libc, unwind_attributes, int_bits_const)]
|
||||
#![no_std]
|
||||
|
||||
extern crate cslice;
|
||||
|
|
|
@ -6,3 +6,7 @@ version = "0.0.0"
|
|||
[lib]
|
||||
name = "unwind_backtrace"
|
||||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
unwind = { path = "../libunwind" }
|
||||
libc = { path = "../libc" }
|
||||
|
|
|
@ -27,7 +27,7 @@ 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 = ["rust-1_28", "alloc", "ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp"] }
|
||||
smoltcp = { version = "0.6.0", default-features = false, features = ["alloc", "ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp"] }
|
||||
riscv = { version = "0.6.0", features = ["inline-asm"] }
|
||||
|
||||
[dependencies.fringe]
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(lang_items, alloc, try_from, nonzero, asm,
|
||||
panic_implementation, panic_info_message,
|
||||
const_slice_len)]
|
||||
panic_handler, panic_info_message)]
|
||||
#![no_std]
|
||||
|
||||
extern crate eh;
|
||||
|
|
Loading…
Reference in New Issue