DarrenBaldwin07 / clerk-rs

An unofficial Rust SDK for Clerk.dev

Home Page:https://crates.io/crates/clerk-rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature flag for rustls/native-tls

jonaro00 opened this issue · comments

The current default feature on reqwest uses native TLS which is harder to compile on some platforms.

It could either be switched to use rustls by default with a flag for native, or simply a flag for enabling rustls.

Happy to accept a PR for this! I'm fine with just configuring it to use rustls by default

reqwest = { 
    version = "version", 
    features = ["rustls-tls"], 
    default-features = false 
}