1
0
Fork 0

Cargo: add byteorder

This commit is contained in:
morgan 2024-10-04 16:01:32 +08:00
parent 445a3551c5
commit 2531f1b8bd
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ core_io = { version = "0.1", features = ["collections"] }
embedded-hal = "0.2" embedded-hal = "0.2"
nb = "1.0" nb = "1.0"
void = { version = "1", default-features = false } void = { version = "1", default-features = false }
byteorder = { version = "1.3", default-features = false }
io = { path = "../libio", features = ["byteorder"] } io = { path = "../libio", features = ["byteorder"] }
libboard_zynq = { path = "@@ZYNQ_RS@@/libboard_zynq" } libboard_zynq = { path = "@@ZYNQ_RS@@/libboard_zynq" }

View File

@ -3,6 +3,7 @@
#![feature(naked_functions)] #![feature(naked_functions)]
#![feature(asm)] #![feature(asm)]
extern crate byteorder;
extern crate core_io; extern crate core_io;
extern crate crc; extern crate crc;
extern crate embedded_hal; extern crate embedded_hal;