pcwalton / rust-media

A free, comprehensive, and portable video/audio streaming library for Rust
Apache License 2.0
787 stars 57 forks source link

cargo build failed #36

Closed yohaia closed 7 years ago

yohaia commented 7 years ago

when trying to run "cargo build" on the example folder, I am getting this error 6 times: error: use of unstable library feature 'float_bits_conv': recently added (see issue #40470)

any help will be appreciated

jdm commented 7 years ago

You need to use a nightly compiler.

jdm commented 7 years ago

Actually, this is a problem caused by a dependency of rust-media - the lewton crate uses the ieee754 crate, and that crate was broken as described in https://github.com/rust-lang/rust/issues/40470#issuecomment-295313690 .

est31 commented 7 years ago

I've filed #37 to fix this. Sorry for the trouble!