mac_utun 0.6.0

Create utun device for macos
Documentation
1
2
3
4
5
6
7
use cc;

fn main() {
    if cfg!(target_os = "macos") {
        cc::Build::new().file("src/c/utun.c").compile("utun");
    }
}