From b5687cf3b1134f7d3eb7698e3e0b247c4f9b7efc Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Wed, 13 Sep 2023 23:35:31 +0800 Subject: [PATCH] Upgrade ckb dependencies to `0.111.0` --- Cargo.toml | 20 ++++++++++---------- ckb-signer/Cargo.toml | 6 +++--- plugin-protocol/Cargo.toml | 4 ++-- test/Cargo.toml | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3b3ab75a..18537fa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,15 +7,15 @@ edition = "2021" description = "ckb command line interface" [dependencies] -ckb-jsonrpc-types = "=0.111.0-rc12" -ckb-hash = "=0.111.0-rc12" -ckb-crypto = { version = "=0.111.0-rc12", features = ["secp"] } -ckb-build-info = "=0.111.0-rc12" -ckb-types = "=0.111.0-rc12" -ckb-util = "=0.111.0-rc12" -ckb-error = "=0.111.0-rc12" -ckb-script = "=0.111.0-rc12" -ckb-chain-spec = "=0.111.0-rc12" +ckb-jsonrpc-types = "=0.111.0" +ckb-hash = "=0.111.0" +ckb-crypto = { version = "=0.111.0", features = ["secp"] } +ckb-build-info = "=0.111.0" +ckb-types = "=0.111.0" +ckb-util = "=0.111.0" +ckb-error = "=0.111.0" +ckb-script = "=0.111.0" +ckb-chain-spec = "=0.111.0" ckb-mock-tx-types = { git = "https:/github.com/nervosnetwork/ckb-standalone-debugger", branch = "develop" } ckb-sdk = { git = "https://github.com/eval-exec/ckb-sdk-rust", branch = "exec/data2"} ckb-signer = { path = "ckb-signer", version = "0.4.0" } @@ -73,7 +73,7 @@ termion = "1.5" rand = "0.7" [build-dependencies] -ckb-build-info = "=0.111.0-rc12" +ckb-build-info = "=0.111.0" [workspace] members = ["ckb-signer", "plugin-protocol"] diff --git a/ckb-signer/Cargo.toml b/ckb-signer/Cargo.toml index f7f1ee3d..1c8563d0 100644 --- a/ckb-signer/Cargo.toml +++ b/ckb-signer/Cargo.toml @@ -24,7 +24,7 @@ thiserror = "1.0.30" parking_lot = "0.11" anyhow = "1.0.63" -ckb-types = "=0.111.0-rc12" -ckb-hash = "=0.111.0-rc12" -ckb-crypto = { version = "=0.111.0-rc12", features = ["secp"] } +ckb-types = "=0.111.0" +ckb-hash = "=0.111.0" +ckb-crypto = { version = "=0.111.0", features = ["secp"] } ckb-sdk = { git = "https://github.com/eval-exec/ckb-sdk-rust", branch = "exec/data2"} diff --git a/plugin-protocol/Cargo.toml b/plugin-protocol/Cargo.toml index 2c78419e..b7db61d7 100644 --- a/plugin-protocol/Cargo.toml +++ b/plugin-protocol/Cargo.toml @@ -9,8 +9,8 @@ description = "ckb-cli plugin protocol" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -ckb-types = "=0.111.0-rc12" -ckb-jsonrpc-types = "=0.111.0-rc12" +ckb-types = "=0.111.0" +ckb-jsonrpc-types = "=0.111.0" serde = { version = "1.0", features = ["derive"] } serde_derive = "1.0" serde_json = "1.0" diff --git a/test/Cargo.toml b/test/Cargo.toml index e145aec8..a8bd4a90 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -16,10 +16,10 @@ toml = "0.5.0" serde_yaml = "0.8.9" ckb-sdk = { git = "https://github.com/eval-exec/ckb-sdk-rust", branch = "exec/data2"} serde_json = "1.0" -ckb-types = "=0.111.0-rc12" -ckb-jsonrpc-types = "=0.111.0-rc12" -ckb-app-config = "=0.111.0-rc12" -ckb-chain-spec = "=0.111.0-rc12" +ckb-types = "=0.111.0" +ckb-jsonrpc-types = "=0.111.0" +ckb-app-config = "=0.111.0" +ckb-chain-spec = "=0.111.0" regex = "1.1.6" faster-hex = "0.6"