arrow2 0.18.0

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
use rustc_version::{version_meta, Channel};

fn main() {
    if version_meta().unwrap().channel == Channel::Nightly {
        println!("cargo:rustc-cfg=nightly_build");
    }
}