From 04476bedaa7ad1b6449d76d788a8dbf6650c323e Mon Sep 17 00:00:00 2001 From: Daniel Bloom <7810950-Daniel.Aaron.Bloom@users.noreply.gitlab.com> Date: Fri, 31 May 2024 22:25:55 -0700 Subject: [PATCH] chore: use published version --- Cargo.lock | 5 +++-- examples/Cargo.lock | 5 +++-- sdk/Cargo.lock | 5 +++-- sdk/Cargo.toml | 3 +-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4c1b27900..94da70849 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -108,8 +108,9 @@ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "array-concat" -version = "0.5.2" -source = "git+https://github.com/Daniel-Aaron-Bloom/array-concat.git#c929d49bc0f3c5f7e25d87fb940ece830e87e8da" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b4d2c47ea522f4135657904891e533727daca3d2d852f29f5e4cc50960c77c" [[package]] name = "array-init" diff --git a/examples/Cargo.lock b/examples/Cargo.lock index c66425037..9fae1a97e 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -29,8 +29,9 @@ checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" [[package]] name = "array-concat" -version = "0.5.2" -source = "git+https://github.com/Daniel-Aaron-Bloom/array-concat.git#c929d49bc0f3c5f7e25d87fb940ece830e87e8da" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b4d2c47ea522f4135657904891e533727daca3d2d852f29f5e4cc50960c77c" [[package]] name = "array-init" diff --git a/sdk/Cargo.lock b/sdk/Cargo.lock index 995fd6d65..94e948330 100644 --- a/sdk/Cargo.lock +++ b/sdk/Cargo.lock @@ -29,8 +29,9 @@ checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" [[package]] name = "array-concat" -version = "0.5.2" -source = "git+https://github.com/Daniel-Aaron-Bloom/array-concat.git#c929d49bc0f3c5f7e25d87fb940ece830e87e8da" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b4d2c47ea522f4135657904891e533727daca3d2d852f29f5e4cc50960c77c" [[package]] name = "array-init" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 1c4cf33da..f6120445d 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -10,8 +10,7 @@ repository = "https://github.com/0xmozak/mozak-node/sdk" version = "0.2.0" [dependencies] -# TODO(dbloom): Switch to upstream (inspier/array-concat#2) or move to mozak org -array-concat = { git = "https://github.com/Daniel-Aaron-Bloom/array-concat.git" } +array-concat = "0.5.3" array-util = "1.0.2" once_cell = { version = "1.19", default-features = false, features = ["race"] } rkyv = { version = "=0.8.0-alpha.1", default-features = false, features = ["pointer_width_32", "alloc", "bytecheck"] }