magic-wormhole / magic-wormhole.rs

Rust implementation of Magic Wormhole, with new features and enhancements
European Union Public License 1.2
737 stars 81 forks source link

update async-tungstenite to enable ppc builds #214

Closed adamthiede closed 7 months ago

adamthiede commented 7 months ago

I'm attempting to package magic-wormhole.rs for Alpine Linux, and it's failing the powerpc build because of a dependency chain. async-tungstenite depends on async-tls, which depends on rustls, which depends on ring. ring prior to 0.17 did not support ppc: https://github.com/briansmith/ring/issues/1904

Updating to the latest async-tungstenite removes the dependency on the older version of ring and should allow this to build on ppc.

felinira commented 7 months ago

Thanks, looking good :)

Test failures seem to be due to too old MSRV, will bump it after merge.