├── .gitignore ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE-ZLIB ├── Readme.md ├── example ├── Cargo.toml ├── build.rs └── src │ └── main.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-ZLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/LICENSE-ZLIB -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/Readme.md -------------------------------------------------------------------------------- /example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/example/Cargo.toml -------------------------------------------------------------------------------- /example/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | static_vcruntime::metabuild(); 3 | } 4 | -------------------------------------------------------------------------------- /example/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisDenton/static_vcruntime/HEAD/src/lib.rs --------------------------------------------------------------------------------