tsuki 0.2.2

Lua 5.4 ported to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    #[cfg(windows)]
    build_proxy();
}

#[cfg(windows)]
fn build_proxy() {
    cc::Build::new()
        .cpp(true)
        .file("windows.cpp")
        .compile("tsukiproxy");
}