From 67d1628602d1bbd268fbd70c646969d0edaacf79 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Aug 2022 13:01:37 -0600 Subject: [PATCH] chore: bump libc from 0.2.129 to 0.2.131 (#27162) * chore: bump libc from 0.2.129 to 0.2.131 Bumps [libc](https://github.com/rust-lang/libc) from 0.2.129 to 0.2.131. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.129...0.2.131) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 4 ++-- ledger/Cargo.toml | 2 +- perf/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 4 ++-- rpc/Cargo.toml | 2 +- storage-bigtable/build-proto/Cargo.lock | 4 ++-- streamer/Cargo.toml | 2 +- sys-tuner/Cargo.toml | 2 +- validator/Cargo.toml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff736feaf..b5cbea255 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2423,9 +2423,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.129" +version = "0.2.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64de3cc433455c14174d42e554d4027ee631c4d046d43e3ecc6efc4636cdc7a7" +checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40" [[package]] name = "libloading" diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index dae528e99..f5fc208ef 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -21,7 +21,7 @@ fs_extra = "1.2.0" futures = "0.3.21" itertools = "0.10.3" lazy_static = "1.4.0" -libc = "0.2.129" +libc = "0.2.131" log = { version = "0.4.17" } lru = "0.7.7" num_cpus = "1.13.1" diff --git a/perf/Cargo.toml b/perf/Cargo.toml index 8fd427b63..202bf36c6 100644 --- a/perf/Cargo.toml +++ b/perf/Cargo.toml @@ -29,7 +29,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.12.0" } [target."cfg(target_os = \"linux\")".dependencies] caps = "0.5.3" -libc = "0.2.129" +libc = "0.2.131" nix = "0.24.2" [lib] diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 273a42ed6..e3605f8ec 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -2169,9 +2169,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.129" +version = "0.2.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64de3cc433455c14174d42e554d4027ee631c4d046d43e3ecc6efc4636cdc7a7" +checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40" [[package]] name = "libloading" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 00a059d2d..531218dae 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -21,7 +21,7 @@ jsonrpc-core-client = { version = "18.0.0" } jsonrpc-derive = "18.0.0" jsonrpc-http-server = "18.0.0" jsonrpc-pubsub = "18.0.0" -libc = "0.2.129" +libc = "0.2.131" log = "0.4.17" rayon = "1.5.3" regex = "1.5.6" diff --git a/storage-bigtable/build-proto/Cargo.lock b/storage-bigtable/build-proto/Cargo.lock index 0b599060c..110356f43 100644 --- a/storage-bigtable/build-proto/Cargo.lock +++ b/storage-bigtable/build-proto/Cargo.lock @@ -116,9 +116,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.129" +version = "0.2.131" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64de3cc433455c14174d42e554d4027ee631c4d046d43e3ecc6efc4636cdc7a7" +checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40" [[package]] name = "log" diff --git a/streamer/Cargo.toml b/streamer/Cargo.toml index 8bc290962..e72816d03 100644 --- a/streamer/Cargo.toml +++ b/streamer/Cargo.toml @@ -15,7 +15,7 @@ futures-util = "0.3.21" histogram = "0.6.9" indexmap = "1.9.1" itertools = "0.10.3" -libc = "0.2.129" +libc = "0.2.131" log = "0.4.17" nix = "0.24.2" pem = "1.0.2" diff --git a/sys-tuner/Cargo.toml b/sys-tuner/Cargo.toml index 4b60a190d..a98a71930 100644 --- a/sys-tuner/Cargo.toml +++ b/sys-tuner/Cargo.toml @@ -12,7 +12,7 @@ publish = true [dependencies] clap = "2.33.1" -libc = "0.2.129" +libc = "0.2.131" log = "0.4.17" solana-logger = { path = "../logger", version = "=1.12.0" } solana-version = { path = "../version", version = "=1.12.0" } diff --git a/validator/Cargo.toml b/validator/Cargo.toml index 106bc27d6..3d1b79478 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -60,7 +60,7 @@ symlink = "0.1.0" jemallocator = { package = "tikv-jemallocator", version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"] } [target."cfg(unix)".dependencies] -libc = "0.2.129" +libc = "0.2.131" signal-hook = "0.3.14" [package.metadata.docs.rs]