fq 0.0.4

A fast and simple ring-buffer-based single-producer, single-consumer queue with no dependencies. You can use this to write Rust programs with low-latency message passing.
1
2
3
4
5
6
7
fn main() {
    println!("cargo::rustc-check-cfg=cfg(nightly)");
    let meta = rustc_version::version_meta().unwrap();
    if meta.channel == rustc_version::Channel::Nightly {
        println!("cargo:rustc-cfg=nightly");
    }
}