From 1f81b02e83f3c343ce5696df9055711f6b200f15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:29:56 +0000 Subject: [PATCH] Bump async-fs from 1.6.0 to 2.0.0 Bumps [async-fs](https://github.com/smol-rs/async-fs) from 1.6.0 to 2.0.0. - [Release notes](https://github.com/smol-rs/async-fs/releases) - [Changelog](https://github.com/smol-rs/async-fs/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/async-fs/compare/v1.6.0...v2.0.0) --- updated-dependencies: - dependency-name: async-fs dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++++--- e2e/Cargo.toml | 2 +- lib/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0e1a8a2..7b68a2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,6 +132,17 @@ dependencies = [ "futures-lite", ] +[[package]] +name = "async-fs" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d819821687ae85eb078f61de86893e6b09e1ecb32e8cd9a36a03f00cac42d6" +dependencies = [ + "async-lock", + "blocking", + "futures-lite", +] + [[package]] name = "async-lock" version = "2.7.0" @@ -218,7 +229,7 @@ dependencies = [ name = "baza-e2e" version = "0.0.0" dependencies = [ - "async-fs", + "async-fs 2.0.0", "baza-api-s3", "baza-lib", "cucumber", @@ -234,7 +245,7 @@ dependencies = [ name = "baza-lib" version = "0.0.0" dependencies = [ - "async-fs", + "async-fs 2.0.0", "async-trait", "derive_more", "futures", @@ -1944,7 +1955,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6d631a04555d2450ff36691d504a8229d04db8492d8a2cace3e999849fa4afa" dependencies = [ - "async-fs", + "async-fs 1.6.0", "async-trait", "backtrace", "base64", diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index 3ba8026..f382876 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -9,7 +9,7 @@ license = "BlueOak-1.0.0" publish = false [dev-dependencies] -async-fs = "1.6" +async-fs = "2.0" baza = { package = "baza-lib", path = "../lib" } baza-api-s3 = { path = "../api/s3" } cucumber = { version = "0.20", features = ["libtest"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index f96fc07..7086770 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -9,7 +9,7 @@ license = "BlueOak-1.0.0" publish = false [dependencies] -async-fs = "1.6" +async-fs = "2.0" async-trait = "0.1" derive_more = "0.99" futures = "0.3"