acc_shared_memory_rs 0.6.0

Rust library for reading Assetto Corsa Competizione shared memory
Documentation
1
2
3
4
5
6
7
8
fn main() {
    // Only build on Windows
    if cfg!(target_os = "windows") {
        println!("cargo:rustc-cfg=windows_build");
    } else {
        println!("cargo:warning=This library is designed for Windows and ACC. Building stub version for cross-platform compatibility.");
    }
}