Well the title says it:
extern crate piston;
use piston::input::*;
results in a
error: unresolved import `piston::input::*`. Could not find `input` in `piston`
That’s on stable rust 1.7.0 with piston = “0.19.0”
Well the title says it:
extern crate piston;
use piston::input::*;
results in a
error: unresolved import `piston::input::*`. Could not find `input` in `piston`
That’s on stable rust 1.7.0 with piston = “0.19.0”
You need to use beta or nightly version of Rust.
It will be a hard error in the future, so have to break stuff now or later.