Tfhe-rs can't run on my laptop

After cloning the tfhe-rs.On building i find the following error. What can i do to have it run without issues?

PS C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs> cargo run --release
warning: C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\tfhe\Cargo.toml: unused manifest key: lints.rust.unexpected_cfgs.check-cfg
Compiling tfhe-cuda-backend v0.4.0-alpha.0 (C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\backends\tfhe-cuda-backend)
Compiling tasks v0.0.0 (C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\tasks)
Compiling tfhe-trivium v0.1.0 (C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\apps\trivium)
Compiling tfhe-versionable-derive v0.2.0 (C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\utils\tfhe-versionable-derive)
error: failed to run custom build command for tfhe-cuda-backend v0.4.0-alpha.0 (C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\backends\tfhe-cuda-backend)

Caused by:
process didn’t exit successfully: C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs\target\release\build\tfhe-cuda-backend-bcb1546f1b1ccacd\build-script-build (exit code: 101)
— stdout
Build tfhe-cuda-backend
cargo::rerun-if-changed=cuda/include
cargo::rerun-if-changed=cuda/src
cargo::rerun-if-changed=cuda/tests_and_benchmarks
cargo::rerun-if-changed=cuda/CMakeLists.txt
cargo::rerun-if-changed=src

— stderr
thread ‘main’ panicked at backends\tfhe-cuda-backend\build.rs:55:9:
Error: platform not supported, tfhe-cuda-backend not built (only Linux is supported)
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish…
PS C:\Users\1012 G2\Desktop\zamadocuments\tfhe-rs>

Hello !
tfhe-rs is a library and is not meant to be run as a standalone program. What you are trying to run here is a helper tool used in our CI.

To use tfhe-rs you must add it as a dependency in your project. You can find more information here: Installation | TFHE-rs.

If you just want to run an example to see it in action you can use cargo run --example:
cargo run --release --features integer,internal-keycache,x86_64 --example dark_market -- fhe-improved

Please note that the cuda backend is not supported on native windows, so you should add the dependency without the gpu feature or run it under WSL.