Closed
Description
Response to:
#153
why don't you just use rustls-openssl instead of entirely removing openssl?
There are some projects like rdkafka that use openssl but don't use rustls since it's a wrapper around a repo written in a non-Rust language like C/C++. So now I can't use TLS at all when the OpenSSL is gone, when I want to use rdkafka crate in muslrust.
Rustls-openssl is different from rust-openssl. Rustls-openssl is 100% Rust, while the one you removed (rust-openssl) has some C in it
And since you decided to support rustls, you should prob add support for rustls-openssl since it's part of the rustls ecosystem and mentioned in the rustls documentation.