Closed
Description
Looks like the color definitions have not be updated in the 0.28.0 version of the crate. Getting an undefined error with the following code:
extern crate conrod;
fn main() {
println!("{:?}", conrod::color::BLUE);
}
Replacing the crate with the github link works.
Checking the multirust cargo src shows conrod version at 0.28.0 with the old color definitions. I even tried uninstalling rust and clearing all the cached cargo data.