crosswin 0.4.0

Async-friendly Windows primitives for Rust with process management, memory monitoring, and system operations.
Documentation
1
2
3
4
5
6
7
8
9
use crosswin::prelude::*;
use crosswin::processes::list_processes;

#[tokio::test]
async fn list_processes_smoke() -> Result<()> {
    let processes = list_processes().await?;
    assert!(!processes.is_empty());
    Ok(())
}