From 02473c5b19b4db0ba744bd585d35dad057dec094 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 13:42:30 +0000 Subject: [PATCH] Bump the cargo-dependencies group with 3 updates (#308) * Bump the cargo-dependencies group with 3 updates Bumps the cargo-dependencies group with 3 updates: [base64](https://github.com/marshallpierce/rust-base64), [sysinfo](https://github.com/GuillaumeGomez/sysinfo) and [toml](https://github.com/toml-rs/toml). Updates `base64` from 0.22.0 to 0.22.1 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.22.0...v0.22.1) Updates `sysinfo` from 0.30.11 to 0.30.12 - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/commits) Updates `toml` from 0.8.13 to 0.8.14 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: sysinfo dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] * switch to using fiberbots github token --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mari --- .../workflows/weekly_dependency_update.yml | 2 +- Cargo.lock | 22 +++++++++---------- Cargo.toml | 6 ++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/weekly_dependency_update.yml b/.github/workflows/weekly_dependency_update.yml index 55e7dea..ce824ee 100644 --- a/.github/workflows/weekly_dependency_update.yml +++ b/.github/workflows/weekly_dependency_update.yml @@ -13,7 +13,7 @@ jobs: steps: - name: assign dependency updates team to pull request env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.PRIVATE_GITHUB_TOKEN }} url: ${{ github.event.pull_request.html_url }} run: | gh pr edit "$url" --add-reviewer fiberplane/cli-devs-dependency-updates diff --git a/Cargo.lock b/Cargo.lock index 8928693..7d4b351 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,9 +189,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "base64" -version = "0.22.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64uuid" @@ -1118,7 +1118,7 @@ version = "2.23.0" dependencies = [ "abort-on-drop", "anyhow", - "base64 0.22.0", + "base64 0.22.1", "blocking", "bytes", "clap", @@ -2755,7 +2755,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" dependencies = [ "async-compression", - "base64 0.22.0", + "base64 0.22.1", "bytes", "futures-core", "futures-util", @@ -2924,7 +2924,7 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.22.0", + "base64 0.22.1", "rustls-pki-types", ] @@ -3311,9 +3311,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.30.11" +version = "0.30.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87341a165d73787554941cd5ef55ad728011566fe714e987d1b976c15dbc3a83" +checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae" dependencies = [ "cfg-if", "core-foundation-sys", @@ -3583,9 +3583,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.13" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" +checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" dependencies = [ "serde", "serde_spanned", @@ -3604,9 +3604,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ "indexmap 2.2.6", "serde", diff --git a/Cargo.toml b/Cargo.toml index ece7b5e..a56ccad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] abort-on-drop = "0.2.1" anyhow = "1.0" -base64 = "0.22.0" +base64 = "0.22.1" blocking = "1.6.1" bytes = "1.1.0" clap = { version = "4.0.17", features = ["derive", "env", "wrap_help"] } @@ -62,12 +62,12 @@ serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0" sha2 = "0.10.2" strum = "=0.24.1" # match what fiberplane-models uses -sysinfo = "0.30.11" +sysinfo = "0.30.12" termwiz = "0.22.0" time = { version = "0.3.11", features = ["macros"] } tokio = { version = "1", features = ["full"] } tokio-util = { version = "0.7.11", features = ["io", "compat"] } -toml = "0.8.13" +toml = "0.8.14" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } url = "2.2"