From b4ed4a55423d2dd63aeaf8729ea19fb571383664 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 16:13:53 +0000 Subject: [PATCH] build(deps): bump once_cell from 1.19.0 to 1.20.1 Bumps [once_cell](https://github.com/matklad/once_cell) from 1.19.0 to 1.20.1. - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.19.0...v1.20.1) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 +++++-- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04f15aed..2078a19d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1494,9 +1494,12 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1" +dependencies = [ + "portable-atomic", +] [[package]] name = "openssl-probe" diff --git a/Cargo.toml b/Cargo.toml index 756a31b0..fda52622 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ cargo_metadata = "0.18.1" # resolving Cargo manifest metadata (consider `guppy`! clap = { version = "4.5.17", features = ["derive"] } # parse CLI arguments dirs = "5.0.1" # common directories indicatif = "0.17.8" # UI -once_cell = "1.19.0" # lazy data structures and thunking +once_cell = "1.20.1" # lazy data structures and thunking owo-colors = "4.1.0" # color support for the terminal petgraph = "0.6.5" # graph data structures rust-releases = { version = "0.28.0", default-features = false, features = ["rust-changelog"] } # get the available rust versions