blackbeam / rust-mysql-simple

Mysql client library implemented in rust.
Apache License 2.0
663 stars 144 forks source link

Made dependency 'native-tls' optional using feature flag #293

Closed TobiasDeBruijn closed 2 years ago

TobiasDeBruijn commented 3 years ago

This PR makes the 'native-tls' dependency optional, thus not forcing users who don't use OpenSSL to have to have it installed on their runtime containers.

This PR doesn't break backwards compatibility, the feature is enabled by default.

Solves #280 , partially