hecrj / wgpu_glyph

A fast text renderer for wgpu (https://github.com/gfx-rs/wgpu)
https://docs.rs/wgpu_glyph
MIT License
443 stars 78 forks source link

error[E0658]: use of unstable library feature 'try_from' (see issue #33417) #3

Closed digiwizkid closed 5 years ago

digiwizkid commented 5 years ago
error[E0658]: use of unstable library feature 'try_from' (see issue #33417)

Getting this while trying to run the example.

cargo run --example hello --features wgpu/vulkan --release

hecrj commented 5 years ago

Which version of Rust are you using? try_from was stabilized a while ago: https://github.com/rust-lang/rust/issues/33417

Try running rustup update and run the example again. Let me know how that goes!

digiwizkid commented 5 years ago

I was using 1.33.0 after updating to 1.35.0, it's working fine.