extendr-api 0.1.5

Safe and user friendly bindings to the R programming language.
Documentation
1
2
3
4
5
6
7
8
use std::env;

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