neon 0.4.0

A safe abstraction layer for Node.js.
Documentation
use std::env;

fn main() {
    if let Ok(profile) = env::var("PROFILE") {
        println!("cargo:rustc-cfg=neon_profile={:?}", profile);
    }
}