From c6bb6fa255fa5ed5b1cdf08430b983909e3af00e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 21:18:43 +0900 Subject: [PATCH] chore(deps): bump notify from 5.0.0 to 5.1.0 (#85) Bumps [notify](https://github.com/notify-rs/notify) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/notify-rs/notify/releases) - [Changelog](https://github.com/notify-rs/notify/blob/main/CHANGELOG.md) - [Commits](https://github.com/notify-rs/notify/compare/notify-5.0.0...notify-5.1.0) --- updated-dependencies: - dependency-name: notify dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- crates/stctl/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a6e9e8..70bfff6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1345,9 +1345,9 @@ dependencies = [ [[package]] name = "notify" -version = "5.0.0" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a" +checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9" dependencies = [ "bitflags", "crossbeam-channel", @@ -1358,7 +1358,7 @@ dependencies = [ "libc", "mio", "walkdir", - "winapi", + "windows-sys", ] [[package]] diff --git a/crates/stctl/Cargo.toml b/crates/stctl/Cargo.toml index d37eb5b..396b64b 100644 --- a/crates/stctl/Cargo.toml +++ b/crates/stctl/Cargo.toml @@ -22,7 +22,7 @@ tokio = { version = "1.25.0", features = ["full"] } toml = "0.6.0" tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } -notify = "5.0.0" +notify = "5.1.0" futures = { version = "0.3", features = ["std", "async-await"], default-features = false } cargo_metadata = "0.15" serde_json = "1.0.91"