Using Unstable Features in Rust v1.0 Stable

TL;DR: It is not possible. Basically Rust has made it so that the stable version of the compiler will not allow you to use APIs marked unstable.  Looking at the documentation and the code it seems like it should be possible using attributes like #!allow(unstable).  Unfortunately, if you stumble across this attribute and try to […]