From 426f2507d59692cd4c0bd1f675be40abca55a741 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Dec 2021 10:23:26 -0700 Subject: [PATCH] chore: bump serde_yaml from 0.8.21 to 0.8.23 (#21867) * chore: bump serde_yaml from 0.8.21 to 0.8.23 Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.21 to 0.8.23. - [Release notes](https://github.com/dtolnay/serde-yaml/releases) - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.21...0.8.23) --- updated-dependencies: - dependency-name: serde_yaml 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 | 12 +++--------- bench-tps/Cargo.toml | 2 +- cli-config/Cargo.toml | 2 +- genesis/Cargo.toml | 2 +- install/Cargo.toml | 2 +- ledger-tool/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 12 +++--------- 7 files changed, 11 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0fb0a3bd6d..6144b19df9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1204,12 +1204,6 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" -[[package]] -name = "dtoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" - [[package]] name = "ed25519" version = "1.2.0" @@ -4124,12 +4118,12 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c608a35705a5d3cdc9fbe403147647ff34b921f8e833e49306df898f9b20af" +checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0" dependencies = [ - "dtoa", "indexmap", + "ryu", "serde", "yaml-rust", ] diff --git a/bench-tps/Cargo.toml b/bench-tps/Cargo.toml index ab3b80d7d0..505e5e855a 100644 --- a/bench-tps/Cargo.toml +++ b/bench-tps/Cargo.toml @@ -13,7 +13,7 @@ clap = "2.33.1" log = "0.4.14" rayon = "1.5.1" serde_json = "1.0.73" -serde_yaml = "0.8.21" +serde_yaml = "0.8.23" solana-core = { path = "../core", version = "=1.10.0" } solana-genesis = { path = "../genesis", version = "=1.10.0" } solana-client = { path = "../client", version = "=1.10.0" } diff --git a/cli-config/Cargo.toml b/cli-config/Cargo.toml index e978c93329..23f052b60f 100644 --- a/cli-config/Cargo.toml +++ b/cli-config/Cargo.toml @@ -14,7 +14,7 @@ dirs-next = "2.0.0" lazy_static = "1.4.0" serde = "1.0.131" serde_derive = "1.0.103" -serde_yaml = "0.8.21" +serde_yaml = "0.8.23" url = "2.2.2" [dev-dependencies] diff --git a/genesis/Cargo.toml b/genesis/Cargo.toml index 1ccb292400..0754e79cb6 100644 --- a/genesis/Cargo.toml +++ b/genesis/Cargo.toml @@ -14,7 +14,7 @@ base64 = "0.12.3" clap = "2.33.1" serde = "1.0.131" serde_json = "1.0.73" -serde_yaml = "0.8.21" +serde_yaml = "0.8.23" solana-clap-utils = { path = "../clap-utils", version = "=1.10.0" } solana-cli-config = { path = "../cli-config", version = "=1.10.0" } solana-entry = { path = "../entry", version = "=1.10.0" } diff --git a/install/Cargo.toml b/install/Cargo.toml index 3a7944b852..08bc8f43b3 100644 --- a/install/Cargo.toml +++ b/install/Cargo.toml @@ -23,7 +23,7 @@ lazy_static = "1.4.0" nix = "0.23.0" reqwest = { version = "0.11.6", default-features = false, features = ["blocking", "rustls-tls", "json"] } serde = { version = "1.0.131", features = ["derive"] } -serde_yaml = "0.8.21" +serde_yaml = "0.8.23" solana-clap-utils = { path = "../clap-utils", version = "=1.10.0" } solana-client = { path = "../client", version = "=1.10.0" } solana-config-program = { path = "../programs/config", version = "=1.10.0" } diff --git a/ledger-tool/Cargo.toml b/ledger-tool/Cargo.toml index ce25b83cc7..7bc42f9b8d 100644 --- a/ledger-tool/Cargo.toml +++ b/ledger-tool/Cargo.toml @@ -21,7 +21,7 @@ log = { version = "0.4.14" } regex = "1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.73" -serde_yaml = "0.8.21" +serde_yaml = "0.8.23" solana-clap-utils = { path = "../clap-utils", version = "=1.10.0" } solana-cli-output = { path = "../cli-output", version = "=1.10.0" } solana-core = { path = "../core", version = "=1.10.0" } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 51191c3938..e0666c33ec 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -763,12 +763,6 @@ dependencies = [ "syn 0.15.44", ] -[[package]] -name = "dtoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" - [[package]] name = "ed25519" version = "1.0.1" @@ -2442,12 +2436,12 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.21" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c608a35705a5d3cdc9fbe403147647ff34b921f8e833e49306df898f9b20af" +checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0" dependencies = [ - "dtoa", "indexmap", + "ryu", "serde", "yaml-rust", ]