yoshidan / google-cloud-rust

Google Cloud Client Libraries for Rust.
MIT License
233 stars 85 forks source link

Linking against OpenSSL when rustls is chosen #133

Closed dpieczynski closed 1 year ago

dpieczynski commented 1 year ago

When using the following dependencies:

google-cloud-storage = {version = "0.10.0", default-features = false, features = ["rustls-tls"]}
google-cloud-default = {version = "0.1.1", default-features = false, features = ["storage", "rustls-tls"]}

the compiled binary still links against libssl.so.

I'm definitely not an expert in Rust, but it looks like this is caused by the lack of default-features = false here. I don't know if any other changes will be necessary.

yoshidan commented 1 year ago

Thanks for your reporting. I will fix it.