From be445ae83df5b82d0c5ed7d7dc1471d10786caf8 Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Mon, 16 Dec 2024 14:19:25 +0800 Subject: [PATCH] add forked core_io dep --- src/libboard_artiq/Cargo.toml.tpl | 2 +- src/libio/Cargo.toml.tpl | 2 +- src/libksupport/Cargo.toml.tpl | 2 +- src/runtime/Cargo.toml.tpl | 4 ++-- src/satman/Cargo.toml.tpl | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libboard_artiq/Cargo.toml.tpl b/src/libboard_artiq/Cargo.toml.tpl index ab8270f..17aed85 100644 --- a/src/libboard_artiq/Cargo.toml.tpl +++ b/src/libboard_artiq/Cargo.toml.tpl @@ -20,7 +20,7 @@ build_zynq = { path = "../libbuild_zynq" } log = "0.4" log_buffer = { version = "1.2" } crc = { version = "1.7", default-features = false } -core_io = { version = "0.1", features = ["collections"] } +core_io = { git = "https://git.m-labs.hk/srenblad/rs-core_io.git", branch = "main" } embedded-hal = "0.2" nb = "1.0" void = { version = "1", default-features = false } diff --git a/src/libio/Cargo.toml.tpl b/src/libio/Cargo.toml.tpl index f6bd041..1d99e00 100644 --- a/src/libio/Cargo.toml.tpl +++ b/src/libio/Cargo.toml.tpl @@ -8,7 +8,7 @@ name = "io" path = "lib.rs" [dependencies] -core_io = { version = "0.1", features = ["collections"] } +core_io = { git = "https://git.m-labs.hk/srenblad/rs-core_io.git", branch = "main" } byteorder = { version = "1.0", default-features = false, optional = true } libsupport_zynq = { path = "@@ZYNQ_RS@@/libsupport_zynq", default-features = false, features = ["alloc_core"] } diff --git a/src/libksupport/Cargo.toml.tpl b/src/libksupport/Cargo.toml.tpl index 65f9e94..738c971 100644 --- a/src/libksupport/Cargo.toml.tpl +++ b/src/libksupport/Cargo.toml.tpl @@ -12,7 +12,7 @@ build_zynq = { path = "../libbuild_zynq" } cslice = "0.3" log = "0.4" nb = "0.1" -core_io = { version = "0.1", features = ["collections"] } +core_io = { git = "https://git.m-labs.hk/srenblad/rs-core_io.git", branch = "main" } byteorder = { version = "1.3", default-features = false } void = { version = "1", default-features = false } log_buffer = { version = "1.2" } diff --git a/src/runtime/Cargo.toml.tpl b/src/runtime/Cargo.toml.tpl index e57e63e..3719886 100644 --- a/src/runtime/Cargo.toml.tpl +++ b/src/runtime/Cargo.toml.tpl @@ -20,7 +20,7 @@ num-derive = "0.3" cslice = "0.3" log = "0.4" embedded-hal = "0.2" -core_io = { version = "0.1", features = ["collections"] } +core_io = { git = "https://git.m-labs.hk/srenblad/rs-core_io.git", branch = "main" } crc = { version = "1.7", default-features = false } byteorder = { version = "1.3", default-features = false } void = { version = "1", default-features = false } @@ -46,4 +46,4 @@ libboard_artiq = { path = "../libboard_artiq" } [dependencies.tar-no-std] git = "https://git.m-labs.hk/M-Labs/tar-no-std" -rev = "2ab6dc5" \ No newline at end of file +rev = "2ab6dc5" diff --git a/src/satman/Cargo.toml.tpl b/src/satman/Cargo.toml.tpl index 38f64e6..59be252 100644 --- a/src/satman/Cargo.toml.tpl +++ b/src/satman/Cargo.toml.tpl @@ -16,7 +16,7 @@ build_zynq = { path = "../libbuild_zynq" } [dependencies] log = { version = "0.4", default-features = false } byteorder = { version = "1.3", default-features = false } -core_io = { version = "0.1", features = ["collections"] } +core_io = { git = "https://git.m-labs.hk/srenblad/rs-core_io.git", branch = "main" } crc = { version = "1.7", default-features = false } cslice = "0.3" embedded-hal = "0.2"