Use the rustls-tls feature in your reqwest dependency to enable TLS with the rustls crate, which is the standard TLS implementation for Rust. Add the following to your Cargo.toml to configure the client to use TLS securely:
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
This setup allows your Rust application to make HTTPS requests using rustls without requiring OpenSSL.