nlopes / libhoney-rust

Rust library for sending data to Honeycomb
MIT License
23 stars 16 forks source link

Add TLS feature flags for reqwest #62

Closed ramosbugs closed 3 years ago

ramosbugs commented 3 years ago

Currently, this crate depends on reqwest with its default feature flags, which include native-tls and a transitive dependency on OpenSSL. This PR introduces feature flags to allow users to choose between rusttls and native-tls, with the default changing to the former.

nlopes commented 3 years ago

Thank you!