elaborate 1.1.0

Wrappers for standard library functions and types to produce more elaborate error messages
Documentation
1
2
3
4
5
6
use std::fs::create_dir;

fn main() -> anyhow::Result<()> {
    create_dir("/dir")?;
    Ok(())
}