Axum TLS Configuration | axum-server build error

Greetings. I was looking for a solution to add a tls configuration to my axum's router. I decided to use axum-server for that but I got a build error (I'll put it below). So, maybe u can give me some other advices about how to do that?

Additional info:
System: Windows 10
Toolchain: stable-x86_64-pc-windows-gnu
Crate: axum-server, features: tls-rustls

Im working on Windows 10, and tried to build an app previously added cargo add axum-server -F tls-rustls

  Copying platform assembly files from C:/Users/*/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aws-lc-sys-0.24.0/aws-lc/generated-src/win-x86_64/crypto/ to D:/Programs/Rust/test-tls/target/debug/build/aws-lc-sys-750ed80c40196637/out/build/aws-lc/crypto
  mingw32-make[2]: *** No rule to make target 'aws-lc/crypto/CMakeFiles/crypto_objects.dir/chacha/chacha-x86_64.asm.obj', needed by 'artifacts/libaws_lc_0_24_0_crypto.a'.  Stop.
  mingw32-make[1]: *** [CMakeFiles\Makefile2:272: aws-lc/crypto/CMakeFiles/crypto.dir/all] Error 2
  mingw32-make: *** [Makefile:135: all] Error 2
  thread 'main' panicked at C:\Users\*\.cargo\registry\src\index.crates.io-6f17d22bba15001f\cmake-0.1.52\src/lib.rs:1115:5:

  command did not execute successfully, got: exit code: 2

  build script failed, must exit now
  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish...

The error message points to a crate called aws-lc or aws-lc-sys

Yep, I came to this conclusion too. Also I tested this crate and got an awful result: for Windows it doesn't compile while on Linux all is fine...
So.. Maybe someone knows any alternatives? For axum's tls

Try this documentation for aw-lc-rs:
https://aws.github.io/aws-lc-rs/requirements/windows.html
https://aws.github.io/aws-lc-rs/platform_support.html

Okay xD
I see, it's not supported for GNU. I missed that, thank you!