chore(deps): bump powershell_script from 0.3.2 to 1.0.2 (#140)

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] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2022-05-26 10:29:26 -07:00
committed by GitHub
parent 8594e72d31
commit 7cef7b53b5
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@@ -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"

View File

@@ -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"

View File

@@ -922,7 +922,7 @@ fn main() -> Result<()> {
},
);
match powershell_script::run(&script, true) {
match powershell_script::run(&script) {
Ok(output) => {
println!("{}", output);
}