io-lifetimes 0.4.0

A low-level I/O ownership and borrowing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    // Niche optimizations for `Borrowed*` and `Owned*` depend on `rustc_attrs`
    // which, outside of `std`, are only available on nightly.
    if let rustc_version::Channel::Nightly = rustc_version::version_meta()
        .expect("query rustc release channel")
        .channel
    {
        println!("cargo:rustc-cfg=rustc_attrs");
    }

    // Don't rerun this on changes other than build.rs, as we only depend on
    // the rustc version.
    println!("cargo:rerun-if-changed=build.rs");
}