diff --git a/Cargo.lock b/Cargo.lock index 22fc69df..1907111d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -764,7 +764,8 @@ dependencies = [ [[package]] name = "ckb-sdk" version = "3.2.0" -source = "git+https://github.com/eval-exec/ckb-sdk-rust?branch=exec/bump-ckb-v0.116.0#386e59cca70f074ac1187ac7a5f8ad9268aa51d7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48f26ddb7bd2c7c9d47375cc2c0767583fd38ad69fc77d22ce94a36fe296aff7" dependencies = [ "anyhow", "bech32 0.8.1", @@ -1566,9 +1567,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.24" +version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" dependencies = [ "bytes 1.5.0", "fnv", diff --git a/Cargo.toml b/Cargo.toml index 42b63a83..48c1507c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ ckb-util = "=0.116.1" ckb-error = "=0.116.1" ckb-script = "=0.116.1" ckb-chain-spec = "=0.116.1" -ckb-sdk = { git="https://github.com/eval-exec/ckb-sdk-rust", branch="exec/bump-ckb-v0.116.0", features = ["native-tls-vendored"] } +ckb-sdk = { version = "=3.2.0", features = ["native-tls-vendored"] } ckb-mock-tx-types = { version = "=0.116.1" } ckb-signer = { path = "ckb-signer", version = "0.4.1" } plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=1.3.1" } diff --git a/Makefile b/Makefile index 937056dd..a99ef2f3 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ ci: fmt clippy test security-audit check-crates check-licenses git diff --exit-code Cargo.lock integration: - bash devtools/ci/integration.sh v0.115.0-rc2 + bash devtools/ci/integration.sh v0.116.0-rc2 prod: ## Build binary with release profile. cargo build --release diff --git a/ckb-signer/Cargo.toml b/ckb-signer/Cargo.toml index 201f5ada..060ea7f8 100644 --- a/ckb-signer/Cargo.toml +++ b/ckb-signer/Cargo.toml @@ -27,4 +27,4 @@ anyhow = "1.0.63" ckb-types = "=0.116.1" ckb-hash = "=0.116.1" ckb-crypto = { version = "=0.116.1", features = ["secp"] } -ckb-sdk = { git = "https://github.com/eval-exec/ckb-sdk-rust", branch="exec/bump-ckb-v0.116.0",features = ["native-tls-vendored"] } +ckb-sdk = { version = "=3.2.0", features = ["native-tls-vendored"] } diff --git a/test/Cargo.toml b/test/Cargo.toml index 71f57c1c..2fc66a68 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4" env_logger = "0.6" toml = "0.5.0" serde_yaml = "0.8.9" -ckb-sdk = { git = "https://github.com/eval-exec/ckb-sdk-rust", branch="exec/bump-ckb-v0.116.0",features = ["native-tls-vendored"] } +ckb-sdk = { version = "=3.2.0", features = ["native-tls-vendored"] } serde_json = "1.0" ckb-types = "=0.116.1" ckb-jsonrpc-types = "=0.116.1"