You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for your library! I'm using it to get around of OpenSSL nightmares on different platforms.
I encountered a compiler error when i tried to compile my project with nightly rustc.
Error is caused by old version of rustls, which is using unknown compiler feature #[export_macro]. That issue is now fixed in 0.5.8 . source: rustls/rustls#55
Is it welcome to submit PR that upgrades just that dependency?
ps: I'm not in hurry and i can wait for next release.
The text was updated successfully, but these errors were encountered:
@timgluz The dependency here on rustls is rustls = "0.5.6" which allows for higher minor versions, including 0.5.8. Can you try doing cargo update in your project that uses hyper-rustls?
Hi,
thanks for your library! I'm using it to get around of OpenSSL nightmares on different platforms.
I encountered a compiler error when i tried to compile my project with
nightly
rustc.Error is caused by old version of rustls, which is using unknown compiler feature
#[export_macro]
. That issue is now fixed in0.5.8
. source: rustls/rustls#55Is it welcome to submit PR that upgrades just that dependency?
ps: I'm not in hurry and i can wait for next release.
The text was updated successfully, but these errors were encountered: