azure_identity 0.34.0

Rust wrappers around Microsoft Azure REST APIs - Azure identity helper crate
Documentation
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

use super::Executor;
use futures::channel::oneshot;
use std::{ffi::OsStr, io, process::Output, thread};

/// An [`Executor`] using [`std::process::Command`] from [`std::thread::spawn()`].
#[derive(Debug)]
pub struct StdExecutor;

#[async_trait::async_trait]
impl Executor for StdExecutor {
    async fn run(&self, program: &OsStr, args: &[&OsStr]) -> io::Result<Output> {
        let (tx, rx) = oneshot::channel();
        let mut cmd = std::process::Command::new(program);
        cmd.args(args);
        thread::spawn(move || {
            let output = cmd.output();
            tx.send(output)
        });
        let output = rx.await.map_err(io::Error::other)??;
        Ok(output)
    }
}