stepancheg / grpc-rust

Rust implementation of gRPC
MIT License
1.37k stars 124 forks source link

Make openssl an optional dependency for real #72

Closed matklad closed 7 years ago

matklad commented 7 years ago

Hi! Currently openssl dependency is specified as openssl = { version = "0.8", optional = true }, but in fact it is not optional, because httpbis is not optional, and it depends on native-tls :)

matklad commented 7 years ago

Hm, and maybe everything works as intended? native-tls depends on openssl only on linux.

Feel free to close then!

matklad commented 7 years ago

Ah, just found https://github.com/sfackler/rust-native-tls/issues/33, sorry for the noise!

stepancheg commented 7 years ago

Actually, it is just a piece of garbage from using old implementation of tls. Fixed now. Thanks!