fs-tracing 0.1.0

A drop-in replacement for std::fs which provides useful information on error
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(future_incompatible, rust_2018_idioms, trivial_casts, unsafe_code)]

mod globals;

use fs_tracing as fs;

fn main() {
    globals::install();

    let e = fs::read("/not_exist").unwrap_err();
    println!("Debug:\n{:?}", e);
    println!("Display:\n{}", e);
}