├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── notes.md ├── src └── main.rs └── wstest ├── .cargo └── config ├── Cargo.lock ├── Cargo.toml ├── foo ├── Cargo.toml └── src │ └── lib.rs ├── run.sh └── wstest ├── Cargo.toml ├── README.md ├── build.rs └── src └── main.rs /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/README.md -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/notes.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/src/main.rs -------------------------------------------------------------------------------- /wstest/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/.cargo/config -------------------------------------------------------------------------------- /wstest/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/Cargo.lock -------------------------------------------------------------------------------- /wstest/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/Cargo.toml -------------------------------------------------------------------------------- /wstest/foo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/foo/Cargo.toml -------------------------------------------------------------------------------- /wstest/foo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/foo/src/lib.rs -------------------------------------------------------------------------------- /wstest/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/run.sh -------------------------------------------------------------------------------- /wstest/wstest/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/wstest/Cargo.toml -------------------------------------------------------------------------------- /wstest/wstest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/wstest/README.md -------------------------------------------------------------------------------- /wstest/wstest/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgoo/cargo-vcpkg/HEAD/wstest/wstest/build.rs -------------------------------------------------------------------------------- /wstest/wstest/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | --------------------------------------------------------------------------------