forked from M-Labs/artiq-zynq
Cargo: add byteorder
This commit is contained in:
parent
b055abe4eb
commit
b15d9cc668
|
@ -23,6 +23,7 @@ core_io = { version = "0.1", features = ["collections"] }
|
|||
embedded-hal = "0.2"
|
||||
nb = "1.0"
|
||||
void = { version = "1", default-features = false }
|
||||
byteorder = { version = "1.3", default-features = false }
|
||||
|
||||
io = { path = "../libio", features = ["byteorder"] }
|
||||
libboard_zynq = { path = "@@ZYNQ_RS@@/libboard_zynq" }
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#![feature(naked_functions)]
|
||||
#![feature(asm)]
|
||||
|
||||
extern crate byteorder;
|
||||
extern crate core_io;
|
||||
extern crate crc;
|
||||
extern crate embedded_hal;
|
||||
|
|
Loading…
Reference in New Issue