littertray 1.1.0

Lightweight sandboxing for tests that write to the filesystem
Documentation
1
2
3
4
5
6
7
8
#![allow(missing_docs)]

fn main() {
    // async closures weren't stabilised until 1.85
    if rustversion::cfg!(since(1.85)) {
        println!("cargo:rustc-cfg=async_supported");
    }
}