From 5b9671d01a2035707ebe5ffd0389a48236e5864d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Aug 2021 16:37:45 +0000 Subject: [PATCH] chore: bump matches from 0.1.8 to 0.1.9 (#19220) * chore: bump matches from 0.1.8 to 0.1.9 Bumps [matches](https://github.com/SimonSapin/rust-std-candidates) from 0.1.8 to 0.1.9. - [Release notes](https://github.com/SimonSapin/rust-std-candidates/releases) - [Commits](https://github.com/SimonSapin/rust-std-candidates/commits) --- updated-dependencies: - dependency-name: matches dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 4 ++-- core/Cargo.toml | 2 +- entry/Cargo.toml | 2 +- gossip/Cargo.toml | 4 ++-- ledger/Cargo.toml | 2 +- merkle-tree/Cargo.toml | 2 +- perf/Cargo.toml | 2 +- poh/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 4 ++-- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9a53e01687..78d52e59ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2506,9 +2506,9 @@ dependencies = [ [[package]] name = "matches" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "maybe-uninit" diff --git a/core/Cargo.toml b/core/Cargo.toml index dd5399a268..96a1a88f0e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -76,7 +76,7 @@ trees = "0.4.2" [dev-dependencies] jsonrpc-core = "18.0.0" jsonrpc-core-client = { version = "18.0.0", features = ["ipc", "ws"] } -matches = "0.1.6" +matches = "0.1.9" num_cpus = "1.13.0" reqwest = { version = "0.11.4", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde_json = "1.0.66" diff --git a/entry/Cargo.toml b/entry/Cargo.toml index 6a01d1e2d9..aba079b62d 100644 --- a/entry/Cargo.toml +++ b/entry/Cargo.toml @@ -25,7 +25,7 @@ solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.8.0" } solana-sdk = { path = "../sdk", version = "=1.8.0" } [dev-dependencies] -matches = "0.1.6" +matches = "0.1.9" solana-logger = { path = "../logger", version = "=1.8.0" } [lib] diff --git a/gossip/Cargo.toml b/gossip/Cargo.toml index 926245b223..3b439dfc22 100644 --- a/gossip/Cargo.toml +++ b/gossip/Cargo.toml @@ -18,7 +18,7 @@ indexmap = { version = "1.7", features = ["rayon"] } itertools = "0.10.1" log = "0.4.14" lru = "0.6.6" -matches = "0.1.8" +matches = "0.1.9" num-traits = "0.2" rand = "0.7.0" rand_chacha = "0.2.2" @@ -46,7 +46,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.8.0" } thiserror = "1.0" [dev-dependencies] -matches = "0.1.6" +matches = "0.1.9" num_cpus = "1.13.0" serial_test = "0.5.1" diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index 948632e2d9..1401a05cf0 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -70,7 +70,7 @@ features = ["lz4"] [dev-dependencies] assert_matches = "1.5.0" -matches = "0.1.6" +matches = "0.1.9" solana-account-decoder = { path = "../account-decoder", version = "=1.8.0" } [build-dependencies] diff --git a/merkle-tree/Cargo.toml b/merkle-tree/Cargo.toml index ed1ae18bba..8892520625 100644 --- a/merkle-tree/Cargo.toml +++ b/merkle-tree/Cargo.toml @@ -15,7 +15,7 @@ fast-math = "0.1" # This can go once the BPF toolchain target Rust 1.42.0+ [target.bpfel-unknown-unknown.dependencies] -matches = "0.1.8" +matches = "0.1.9" [dev-dependencies] hex = "0.4.3" diff --git a/perf/Cargo.toml b/perf/Cargo.toml index 61eebb59ca..5f11ebe354 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -28,7 +28,7 @@ solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.8.0" } name = "solana_perf" [dev-dependencies] -matches = "0.1.6" +matches = "0.1.9" [[bench]] name = "sigverify" diff --git a/poh/Cargo.toml b/poh/Cargo.toml index d26c2ee917..4e32281179 100644 --- a/poh/Cargo.toml +++ b/poh/Cargo.toml @@ -24,7 +24,7 @@ thiserror = "1.0" [dev-dependencies] bincode = "1.3.3" -matches = "0.1.6" +matches = "0.1.9" rand = "0.7.0" solana-logger = { path = "../logger", version = "=1.8.0" } solana-perf = { path = "../perf", version = "=1.8.0" } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 07afc1fec6..fdbe8f9d92 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -1441,9 +1441,9 @@ dependencies = [ [[package]] name = "matches" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "memchr"