From 1d338955040b5cbad6f2309e08254a700b7af5d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Apr 2022 06:45:02 +0000 Subject: [PATCH] Bump hex-literal from 0.3.1 to 0.3.4 Bumps [hex-literal](https://github.com/RustCrypto/utils) from 0.3.1 to 0.3.4. - [Release notes](https://github.com/RustCrypto/utils/releases) - [Commits](https://github.com/RustCrypto/utils/compare/hex-literal-v0.3.1...hex-literal-v0.3.4) --- updated-dependencies: - dependency-name: hex-literal dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- bin/node-template/runtime/Cargo.toml | 2 +- bin/node/cli/Cargo.toml | 2 +- bin/node/runtime/Cargo.toml | 2 +- client/executor/Cargo.toml | 2 +- client/service/test/Cargo.toml | 2 +- frame/benchmarking/Cargo.toml | 2 +- frame/collective/Cargo.toml | 2 +- frame/contracts/Cargo.toml | 2 +- frame/democracy/Cargo.toml | 2 +- frame/election-provider-multi-phase/Cargo.toml | 2 +- frame/elections/Cargo.toml | 2 +- frame/executive/Cargo.toml | 2 +- frame/vesting/Cargo.toml | 2 +- primitives/core/Cargo.toml | 2 +- primitives/state-machine/Cargo.toml | 2 +- primitives/trie/Cargo.toml | 2 +- utils/frame/remote-externalities/Cargo.toml | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14fd4778c639a..7fd3a77e9da07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2374,9 +2374,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hex-literal" -version = "0.3.1" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5af1f635ef1bc545d78392b136bfe1c9809e029023c84a3638a864a10b8819c8" +checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" [[package]] name = "hex_fmt" diff --git a/bin/node-template/runtime/Cargo.toml b/bin/node-template/runtime/Cargo.toml index 5bba2a4e970b0..8082fdf8add48 100644 --- a/bin/node-template/runtime/Cargo.toml +++ b/bin/node-template/runtime/Cargo.toml @@ -43,7 +43,7 @@ pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-featur # Used for runtime benchmarking frame-benchmarking = { version = "3.1.0", default-features = false, path = "../../../frame/benchmarking", optional = true } frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true } -hex-literal = { version = "0.3.1", optional = true } +hex-literal = { version = "0.3.4", optional = true } pallet-template = { version = "3.0.0", default-features = false, path = "../pallets/template" } diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index 9449edfbf6e08..1d360bd16b0ae 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -37,7 +37,7 @@ crate-type = ["cdylib", "rlib"] codec = { package = "parity-scale-codec", version = "2.0.0" } serde = { version = "1.0.102", features = ["derive"] } futures = { version = "0.3.9", features = ["compat"] } -hex-literal = "0.3.1" +hex-literal = "0.3.4" log = "0.4.8" rand = "0.7.2" structopt = { version = "0.3.8", optional = true } diff --git a/bin/node/runtime/Cargo.toml b/bin/node/runtime/Cargo.toml index f0cad60f2614d..1848f41a80863 100644 --- a/bin/node/runtime/Cargo.toml +++ b/bin/node/runtime/Cargo.toml @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } serde = { version = "1.0.102", optional = true } static_assertions = "1.1.0" -hex-literal = { version = "0.3.1", optional = true } +hex-literal = { version = "0.3.4", optional = true } log = { version = "0.4.14", default-features = false } # primitives diff --git a/client/executor/Cargo.toml b/client/executor/Cargo.toml index e9f0fa14d8e7e..8e4841c77da28 100644 --- a/client/executor/Cargo.toml +++ b/client/executor/Cargo.toml @@ -41,7 +41,7 @@ libsecp256k1 = "0.3.4" [dev-dependencies] assert_matches = "1.3.0" wat = "1.0" -hex-literal = "0.3.1" +hex-literal = "0.3.4" sc-runtime-test = { version = "2.0.0", path = "runtime-test" } substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" } diff --git a/client/service/test/Cargo.toml b/client/service/test/Cargo.toml index 2108d7e26fa83..ff23fb63cf4a6 100644 --- a/client/service/test/Cargo.toml +++ b/client/service/test/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" tempfile = "3.1.0" tokio = "0.1.22" futures01 = { package = "futures", version = "0.1.29" } diff --git a/frame/benchmarking/Cargo.toml b/frame/benchmarking/Cargo.toml index 3b20cf7dd048c..1103ae2b10389 100644 --- a/frame/benchmarking/Cargo.toml +++ b/frame/benchmarking/Cargo.toml @@ -27,7 +27,7 @@ frame-system = { version = "3.0.0", default-features = false, path = "../system" log = { version = "0.4.14", default-features = false } [dev-dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" serde = "1.0.101" [features] diff --git a/frame/collective/Cargo.toml b/frame/collective/Cargo.toml index b8f825cc52931..940350680b5e4 100644 --- a/frame/collective/Cargo.toml +++ b/frame/collective/Cargo.toml @@ -25,7 +25,7 @@ frame-system = { version = "3.0.0", default-features = false, path = "../system" log = { version = "0.4.14", default-features = false } [dev-dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" pallet-balances = { version = "3.0.0", path = "../balances" } [features] diff --git a/frame/contracts/Cargo.toml b/frame/contracts/Cargo.toml index 018a8a5df672e..a1b00eaa2fe8d 100644 --- a/frame/contracts/Cargo.toml +++ b/frame/contracts/Cargo.toml @@ -36,7 +36,7 @@ rand_pcg = { version = "0.2.1", optional = true } [dev-dependencies] assert_matches = "1.3.0" -hex-literal = "0.3.1" +hex-literal = "0.3.4" pallet-balances = { version = "3.0.0", path = "../balances" } pallet-timestamp = { version = "3.0.0", path = "../timestamp" } pallet-randomness-collective-flip = { version = "3.0.0", path = "../randomness-collective-flip" } diff --git a/frame/democracy/Cargo.toml b/frame/democracy/Cargo.toml index f9b0d035b089d..a57fa119d6836 100644 --- a/frame/democracy/Cargo.toml +++ b/frame/democracy/Cargo.toml @@ -28,7 +28,7 @@ pallet-balances = { version = "3.0.0", path = "../balances" } pallet-scheduler = { version = "3.0.0", path = "../scheduler" } sp-storage = { version = "3.0.0", path = "../../primitives/storage" } substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } -hex-literal = "0.3.1" +hex-literal = "0.3.4" [features] default = ["std"] diff --git a/frame/election-provider-multi-phase/Cargo.toml b/frame/election-provider-multi-phase/Cargo.toml index 4b5178faa8e86..a267ab14d448b 100644 --- a/frame/election-provider-multi-phase/Cargo.toml +++ b/frame/election-provider-multi-phase/Cargo.toml @@ -36,7 +36,7 @@ rand = { version = "0.7.3", default-features = false, optional = true, features paste = "1.0.3" parking_lot = "0.11.0" rand = { version = "0.7.3" } -hex-literal = "0.3.1" +hex-literal = "0.3.4" substrate-test-utils = { version = "3.0.0", path = "../../test-utils" } sp-io = { version = "3.0.0", path = "../../primitives/io" } sp-core = { version = "3.0.0", path = "../../primitives/core" } diff --git a/frame/elections/Cargo.toml b/frame/elections/Cargo.toml index ac3c709300f51..99f5f4c743544 100644 --- a/frame/elections/Cargo.toml +++ b/frame/elections/Cargo.toml @@ -23,7 +23,7 @@ frame-support = { version = "3.0.0", default-features = false, path = "../suppor frame-system = { version = "3.0.0", default-features = false, path = "../system" } [dev-dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" pallet-balances = { version = "3.0.0", path = "../balances" } [features] diff --git a/frame/executive/Cargo.toml b/frame/executive/Cargo.toml index 97c5a5ffdc765..140ccd4a8e08c 100644 --- a/frame/executive/Cargo.toml +++ b/frame/executive/Cargo.toml @@ -24,7 +24,7 @@ sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/ sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" } [dev-dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" sp-core = { version = "3.0.0", path = "../../primitives/core" } sp-io ={ version = "3.0.0", path = "../../primitives/io" } pallet-indices = { version = "3.0.0", path = "../indices" } diff --git a/frame/vesting/Cargo.toml b/frame/vesting/Cargo.toml index e1335237eb508..49e5b7c224104 100644 --- a/frame/vesting/Cargo.toml +++ b/frame/vesting/Cargo.toml @@ -27,7 +27,7 @@ sp-io = { version = "3.0.0", path = "../../primitives/io" } sp-core = { version = "3.0.0", path = "../../primitives/core" } pallet-balances = { version = "3.0.0", path = "../balances" } sp-storage = { version = "3.0.0", path = "../../primitives/storage" } -hex-literal = "0.3.1" +hex-literal = "0.3.4" [features] default = ["std"] diff --git a/primitives/core/Cargo.toml b/primitives/core/Cargo.toml index 3d9cf1287e051..9f00a3ce343bb 100644 --- a/primitives/core/Cargo.toml +++ b/primitives/core/Cargo.toml @@ -57,7 +57,7 @@ sp-runtime-interface = { version = "3.0.0", default-features = false, path = ".. [dev-dependencies] sp-serializer = { version = "3.0.0", path = "../serializer" } pretty_assertions = "0.6.1" -hex-literal = "0.3.1" +hex-literal = "0.3.4" rand = "0.7.2" criterion = "0.3.3" serde_json = "1.0" diff --git a/primitives/state-machine/Cargo.toml b/primitives/state-machine/Cargo.toml index 9db850cfe0b96..d53fdd0803695 100644 --- a/primitives/state-machine/Cargo.toml +++ b/primitives/state-machine/Cargo.toml @@ -31,7 +31,7 @@ smallvec = "1.4.1" sp-std = { version = "3.0.0", default-features = false, path = "../std" } [dev-dependencies] -hex-literal = "0.3.1" +hex-literal = "0.3.4" sp-runtime = { version = "3.0.0", path = "../runtime" } pretty_assertions = "0.6.1" diff --git a/primitives/trie/Cargo.toml b/primitives/trie/Cargo.toml index 4396550a48a8f..d6e85bce91b1e 100644 --- a/primitives/trie/Cargo.toml +++ b/primitives/trie/Cargo.toml @@ -30,7 +30,7 @@ sp-core = { version = "3.0.0", default-features = false, path = "../core" } trie-bench = "0.27.0" trie-standardmap = "0.15.2" criterion = "0.3.3" -hex-literal = "0.3.1" +hex-literal = "0.3.4" sp-runtime = { version = "3.0.0", path = "../runtime" } [features] diff --git a/utils/frame/remote-externalities/Cargo.toml b/utils/frame/remote-externalities/Cargo.toml index 21e6542abcb4d..22e0c0ecc425a 100644 --- a/utils/frame/remote-externalities/Cargo.toml +++ b/utils/frame/remote-externalities/Cargo.toml @@ -18,7 +18,7 @@ jsonrpsee-http-client = { version = "=0.2.0-alpha.3", default-features = false, jsonrpsee-types = "=0.2.0-alpha.3" jsonrpsee-proc-macros = "=0.2.0-alpha.3" -hex-literal = "0.3.1" +hex-literal = "0.3.4" env_logger = "0.8.2" log = "0.4.11" codec = { package = "parity-scale-codec", version = "2.0.0" }