agnostic-process 0.3.0

Agnostic abstraction layer of `std::process` for any async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::future::Future;

use crate::smol::AsyncProcess as SmolProcess;

fn run<F>(f: F)
where
  F: Future<Output = ()>,
{
  smol::block_on(f);
}

test_suites!(smol);