From f377bb7b4dd8d226aae44575394af17b2fada4cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 18:57:23 +0000 Subject: [PATCH] chore(deps): bump molecule in /contracts/toCKB-typescript Bumps [molecule](https://github.com/nervosnetwork/molecule) from 0.6.1 to 0.7.2. - [Release notes](https://github.com/nervosnetwork/molecule/releases) - [Commits](https://github.com/nervosnetwork/molecule/commits) --- updated-dependencies: - dependency-name: molecule dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- contracts/toCKB-typescript/Cargo.lock | 33 ++++++++++++++++++++------- contracts/toCKB-typescript/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/contracts/toCKB-typescript/Cargo.lock b/contracts/toCKB-typescript/Cargo.lock index 54d91aa..8b3f9dd 100644 --- a/contracts/toCKB-typescript/Cargo.lock +++ b/contracts/toCKB-typescript/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "bech32" version = "0.7.2" @@ -66,6 +68,12 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + [[package]] name = "ckb-allocator" version = "0.1.1" @@ -81,8 +89,8 @@ version = "0.0.1-pre.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af2cdbdf65ee5b1da71504f5a03d6984bce77d0b4b46daff63f4ba4a3b0eef08" dependencies = [ - "cfg-if", - "molecule", + "cfg-if 0.1.10", + "molecule 0.6.1", ] [[package]] @@ -147,7 +155,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b1428b2b1abe959e6eedb0a17d0ab12f6ba20e1106cc29fc4874e3ba393c177" dependencies = [ - "cfg-if", + "cfg-if 0.1.10", "int-enum-impl", ] @@ -157,7 +165,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2c3cecaad8ca1a5020843500c696de2b9a07b63b624ddeef91f85f9bafb3671" dependencies = [ - "cfg-if", + "cfg-if 0.1.10", "proc-macro-crate", "proc-macro2", "quote", @@ -170,7 +178,16 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3067ceba3d7f5dcc7427cfc584fc506e756f1161151032fec840455f5a3c2fd5" dependencies = [ - "cfg-if", + "cfg-if 0.1.10", +] + +[[package]] +name = "molecule" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be5f63176422224eadd975789462a96cedaf339cd1009ef92fbdfaad39d35f5f" +dependencies = [ + "cfg-if 1.0.0", ] [[package]] @@ -277,7 +294,7 @@ dependencies = [ "ckb-std", "hex", "int-enum", - "molecule", + "molecule 0.7.2", "primitive-types", "tockb-types", ] @@ -287,10 +304,10 @@ name = "tockb-types" version = "0.1.0" dependencies = [ "bitcoin-spv", - "cfg-if", + "cfg-if 0.1.10", "ckb-std", "int-enum", - "molecule", + "molecule 0.6.1", ] [[package]] diff --git a/contracts/toCKB-typescript/Cargo.toml b/contracts/toCKB-typescript/Cargo.toml index 601c5e3..91d48d1 100644 --- a/contracts/toCKB-typescript/Cargo.toml +++ b/contracts/toCKB-typescript/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] ckb-std = "0.6" -molecule = { version = "0.6.1", default-features = false } +molecule = { version = "0.7.2", default-features = false } int-enum = { version = "0.4", default-features = false } bitcoin-spv = { git = "https://github.com/summa-tx/bitcoin-spv.git", branch = "rust/dep-change", default-features = false } bech32 = { git = "https://github.com/reuvenpo/rust-bech32.git", branch = "support-no_std", default-features = false }