From 789633840c7fe0ac69959c3d0e8ed6a206a7eff3 Mon Sep 17 00:00:00 2001 From: renovate Date: Sun, 10 Mar 2024 11:03:16 +0000 Subject: [PATCH] fix(deps): update rust crate async-std to 1.12.0 (#15) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [async-std](https://async.rs) ([source](https://github.com/async-rs/async-std)) | dependencies | minor | `1.9.0` -> `1.12.0` | > :exclamation: **Important** > > Release Notes retrieval for this PR were skipped because no github.com credentials were available. > If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Renovate Bot Reviewed-on: https://git.kemitix.net/kemitix/paperoni/pulls/15 Co-authored-by: renovate Co-committed-by: renovate --- Cargo.lock | 5 ++--- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9e9bcb..a51a524 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -191,9 +191,9 @@ dependencies = [ [[package]] name = "async-std" -version = "1.9.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9f06685bad74e0570f5213741bea82158279a4103d988e57bfada11ad230341" +checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" dependencies = [ "async-channel", "async-global-executor", @@ -208,7 +208,6 @@ dependencies = [ "kv-log-macro", "log 0.4.21", "memchr", - "num_cpus", "once_cell", "pin-project-lite", "pin-utils", diff --git a/Cargo.toml b/Cargo.toml index c39581a..308db8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] # atty = "0.2.14" -async-std = "1.9.0" +async-std = "1.12.0" base64 = "0.13.0" chrono = "0.4.35" clap = { version = "2.33.3", features = ["yaml"] }