eta-graph 1.0.1

Low overhead graph library focused on performance
Documentation
1
2
3
4
5
6
use std::env;

fn main() {
    let msize_type = env::var("MSize").unwrap_or("u64".to_string());
    println!("cargo:rustc-cfg=msize_type=\"{}\"", msize_type);
}