extendr-api 0.1.10

Safe and user friendly bindings to the R programming language.
Documentation
use std::env;

fn main() {
    println!(
        "cargo:rustc-env=R_HOME={}",
        env::var("DEP_R_R_HOME").unwrap()
    );
}