Closed davegallant closed 4 years ago
Alright so I looked at the history of the cargo manifest file and it looks to me like native-tls
was added as a default feature post version 0.11. Did you compile with the --no-default-features
flag by chance?
With that being said, these two features shouldn't be getting mixed up. I'll have to adjust that.
Alright so I looked at the history of the cargo manifest file and it looks to me like
native-tls
was added as a default feature post version 0.11. Did you compile with the--no-default-features
flag by chance?With that being said, these two features shouldn't be getting mixed up. I'll have to adjust that.
Disabling default-features works. Thanks!
sendgrid = { version = "0.13.0", default-features = false, features = ["rustls", "blocking"] }
0.11.3
did not have a dependency on "openssl":Now with
0.13.0
:There is a dependency upon "native-tls":
It is no longer possible to cross-compile
sendgrid-rs
tox86_64-unknown-linux-musl
.