From c6aba18d417b3ed4f3ea44a8892f5c847e8b6036 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 20:26:39 +0000 Subject: [PATCH] Bump once_cell from 0.1.8 to 1.0.1 Bumps [once_cell](https://github.com/matklad/once_cell) from 0.1.8 to 1.0.1. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v0.1.8...v1.0.1) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 +++++++----------------------------------- lesson-23-x/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 49 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2cad7c4..e24a506 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "adler32" version = "1.0.4" @@ -437,7 +439,7 @@ dependencies = [ "crossbeam-utils 0.7.0", "lazy_static 1.4.0", "memoffset", - "scopeguard 1.0.0", + "scopeguard", ] [[package]] @@ -1685,22 +1687,13 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83" -[[package]] -name = "lock_api" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" -dependencies = [ - "scopeguard 0.3.3", -] - [[package]] name = "lock_api" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" dependencies = [ - "scopeguard 1.0.0", + "scopeguard", ] [[package]] @@ -2154,12 +2147,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "0.1.8" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37" -dependencies = [ - "parking_lot 0.7.1", -] +checksum = "c9192c5a4c3b5488dae8d3886ef9df6b5eb246d36323dc7a5078595a154e7771" [[package]] name = "onig" @@ -2231,40 +2221,17 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" -[[package]] -name = "parking_lot" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" -dependencies = [ - "lock_api 0.1.5", - "parking_lot_core 0.4.0", -] - [[package]] name = "parking_lot" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" dependencies = [ - "lock_api 0.3.1", - "parking_lot_core 0.6.2", + "lock_api", + "parking_lot_core", "rustc_version", ] -[[package]] -name = "parking_lot_core" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" -dependencies = [ - "libc", - "rand 0.6.5", - "rustc_version", - "smallvec 0.6.13", - "winapi 0.3.8", -] - [[package]] name = "parking_lot_core" version = "0.6.2" @@ -2833,12 +2800,6 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" -[[package]] -name = "scopeguard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" - [[package]] name = "scopeguard" version = "1.0.0" @@ -3384,7 +3345,7 @@ dependencies = [ "log 0.4.8", "mio", "num_cpus", - "parking_lot 0.9.0", + "parking_lot", "slab 0.4.2", "tokio-executor", "tokio-io", diff --git a/lesson-23-x/Cargo.toml b/lesson-23-x/Cargo.toml index 5f2df4b..9a7f221 100644 --- a/lesson-23-x/Cargo.toml +++ b/lesson-23-x/Cargo.toml @@ -15,7 +15,7 @@ slab = "0.4" floating-duration = "0.1.2" image = "0.20" tobj = "0.1.6" -once_cell = "0.1.4" +once_cell = "1.0.1" [dependencies.sdl2] version = "0.31.0"