From 7b9e92a7f5d65ffbfedad329a90ca61e0adf6d93 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 29 Jun 2023 13:17:44 +0000 Subject: [PATCH] fix(deps): update rust crate num_cpus to 1.16.0 --- Cargo.lock | 15 +++------------ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d68ea4f..ff0f808 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -502,15 +502,6 @@ dependencies = [ "libc", ] -[[package]] -name = "hermit-abi" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" -dependencies = [ - "libc", -] - [[package]] name = "hermit-abi" version = "0.3.1" @@ -800,11 +791,11 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.2.6", + "hermit-abi 0.3.1", "libc", ] diff --git a/Cargo.toml b/Cargo.toml index 16fec2f..4ed8dbd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ diesel = {version = "2.1.0", features = ["postgres"]} diesel_logger = "0.3.0" diesel_migrations = "2.1.0" lazy_static = "1.4.0" -num_cpus = "1.15.0" +num_cpus = "1.16.0" regex = "1.8.4" reqwest = {version = "0.11.18", features = ["json", "rustls-tls", "gzip", "brotli"], default-features = false} rocket = {git = "https://github.com/SergioBenitez/Rocket"}