cling 0.1.0

A lightweight framework that simplifies building complex command-line applications with [clap.rs](https://clap.rs)
Documentation
1
2
3
4
5
6
7
8
9
use rustc_version::{version_meta, Channel};

fn main() {
    // Set cfg flags depending on release channel. We use "unstable" cfg to gate
    // some of the unstable features in the compiler.
    if version_meta().unwrap().channel == Channel::Nightly {
        println!("cargo:rustc-cfg=unstable");
    }
}