Install the openssl prerequisite:
git clone https://github.com/microsoft/vcpkg
vcpkg\bootstrap-vcpkg.bat
vcpkg\vcpkg.exe install openssl:x64-windows
vcpkg\vcpkg.exe integrate install
Set the environment variable VCPKGRS_DYNAMIC=1
, for cmd:
set VCPKGRS_DYNAMIC=1
or powershell:
$env:VCPKGRS_DYNAMIC=1
It should now be possible to run the tests with cargo test
.