From c21042d5714c71593411c45c26df66b164378728 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 May 2022 16:50:00 +0000 Subject: [PATCH] chore(deps): bump powershell_script from 0.3.2 to 1.0.2 Bumps [powershell_script](https://github.com/cfsamson/powershell-script) from 0.3.2 to 1.0.2. - [Release notes](https://github.com/cfsamson/powershell-script/releases) - [Commits](https://github.com/cfsamson/powershell-script/commits) --- updated-dependencies: - dependency-name: powershell_script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- komorebic/Cargo.toml | 2 +- komorebic/src/main.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a2f1be13..58881e0ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -813,9 +813,9 @@ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" [[package]] name = "powershell_script" -version = "0.3.2" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a5a338783191ce961183e8fbca5a4d2902b2595260cecfb55f61f083cdff865" +checksum = "9d5c8599ccb442b80c8c04437bcbcac2f76ff34d7b658b759fb26744dcab6c03" [[package]] name = "ppv-lite86" diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index c718ed613..36d01eea9 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -21,7 +21,7 @@ fs-tail = "0.1" heck = "0.4" lazy_static = "1" paste = "1" -powershell_script = "0.3" +powershell_script = "1.0" serde = { version = "1", features = ["derive"] } serde_json = "1" serde_yaml = "0.8" diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 556a3195b..306f10e37 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -922,7 +922,7 @@ fn main() -> Result<()> { }, ); - match powershell_script::run(&script, true) { + match powershell_script::run(&script) { Ok(output) => { println!("{}", output); }