A BVE Trainsim ATS-Plugin experimental implementation with Rust. This is my first Rust programming result, so the implementation and its process may not be so sophisticated.
The following instruction assumes that your computer OS is Windows.
Get and install Rust from the following link:
Install Rust - Rust Programming Language
Enter the following commands on your command line interface.
rustup target add i686-pc-windows-msvc
rustup target add x86_64-pc-windows-msvc
32bit DLL is generated by entering the following command:
cargo build --release --target="i686-pc-windows-msvc"
64bit DLL is generated by entering the following command:
cargo build --release --target="x86_64-pc-windows-msvc"