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
Seed 0.8 extended Closure with new method via a trait, because this method was missing in wasm-bindgen < 0.2.81. wasm-bindgen 0.2.81 introduced Closure::new.
Thus Closure::new changed meaning from <Closure as ClosureNew>::new() to Closure::new leading to compilation errors.
These errors were fixed in Seed 0.9 (probably f284711). Could you backport this fix to Seed 0.8, so that apps using Seed 0.8 can be compiled correctly using the newest version of wasm-bindgen?
Seed 0.8 extended
Closure
withnew
method via a trait, because this method was missing inwasm-bindgen < 0.2.81
.wasm-bindgen 0.2.81
introducedClosure::new
.Thus
Closure::new
changed meaning from<Closure as ClosureNew>::new()
toClosure::new
leading to compilation errors.These errors were fixed in Seed 0.9 (probably f284711). Could you backport this fix to Seed 0.8, so that apps using Seed 0.8 can be compiled correctly using the newest version of
wasm-bindgen
?#685 is blocking me from moving to Seed 0.9.
I can create pull request with backported fix if you want. Unfortunatelly I cannot publish it to crates.io.
The text was updated successfully, but these errors were encountered: