From ca9a9e8b17a6df9722e51cbbda48a5b73c21eff1 Mon Sep 17 00:00:00 2001 From: mohanson Date: Wed, 21 Feb 2024 10:18:12 +0800 Subject: [PATCH] chore(scripts): update ckb-vm to v0.24.8 --- Cargo.lock | 8 ++++---- script/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1f913ffcf9..90db61f9df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1729,9 +1729,9 @@ dependencies = [ [[package]] name = "ckb-vm" -version = "0.24.7" +version = "0.24.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816e61367594b83f86d6100d1c940a62658f364fcfb8e81f2296440ebcb6e28e" +checksum = "8332997ee3beacb0c1b9e2489e17b33af855a0ec28d7c08a81170fae6b204340" dependencies = [ "byteorder", "bytes", @@ -1747,9 +1747,9 @@ dependencies = [ [[package]] name = "ckb-vm-definitions" -version = "0.24.7" +version = "0.24.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd940885b250d3bc14b1d2b9fb45ceafdc857b2c5c43610cf9bf944f08dc511f" +checksum = "27f6fa54fd079938807cce5b11b4fbb9b21984568b887204ea96a02dbd907c2f" dependencies = [ "paste", ] diff --git a/script/Cargo.toml b/script/Cargo.toml index d418f78eca..75895fc25e 100644 --- a/script/Cargo.toml +++ b/script/Cargo.toml @@ -22,7 +22,7 @@ ckb-traits = { path = "../traits", version = "= 0.114.0-pre" } byteorder = "1.3.1" ckb-types = { path = "../util/types", version = "= 0.114.0-pre" } ckb-hash = { path = "../util/hash", version = "= 0.114.0-pre" } -ckb-vm = { version = "=0.24.7", default-features = false } +ckb-vm = { version = "=0.24.8", default-features = false } faster-hex = "0.6" ckb-logger = { path = "../util/logger", version = "= 0.114.0-pre", optional = true } serde = { version = "1.0", features = ["derive"] }