Sep 04 07:51:34.835 INFO checking rustc-hex-1.0.0 against master#2687112ea6a8701cbf36e6dd4d77d64694cf93d8 for pr-53913 Sep 04 07:51:34.835 INFO running: cargo +2687112ea6a8701cbf36e6dd4d77d64694cf93d8-alt check --frozen --all --all-targets Sep 04 07:51:34.835 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-0/pr-53913/master#2687112ea6a8701cbf36e6dd4d77d64694cf93d8:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53913/worker-0/master#2687112ea6a8701cbf36e6dd4d77d64694cf93d8:/target:rw,Z" "-v" "/home/ec2-user/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/home/ec2-user/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=500" "-e" "CMD=cargo +2687112ea6a8701cbf36e6dd4d77d64694cf93d8-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Sep 04 07:51:35.023 INFO blam! 46f018180cdd527b62b65f0e6595a87ce8b6dd48e09b81bd7ed3b3e386ff8ced Sep 04 07:51:35.025 INFO running `"docker" "start" "-a" "46f018180cdd527b62b65f0e6595a87ce8b6dd48e09b81bd7ed3b3e386ff8ced"` Sep 04 07:51:35.696 INFO kablam! Checking rustc-hex v1.0.0 (file:///source) Sep 04 07:51:36.013 INFO kablam! error[E0432]: unresolved import `hex` Sep 04 07:51:36.013 INFO kablam! --> src/lib.rs:172:9 Sep 04 07:51:36.013 INFO kablam! | Sep 04 07:51:36.013 INFO kablam! 172 | use hex::{FromHex, ToHex}; Sep 04 07:51:36.013 INFO kablam! | ^^^ Maybe a missing `extern crate hex;`? Sep 04 07:51:36.013 INFO kablam! Sep 04 07:51:36.017 INFO kablam! warning: unused imports: `FromHex`, `ToHex` Sep 04 07:51:36.018 INFO kablam! --> src/lib.rs:172:15 Sep 04 07:51:36.018 INFO kablam! | Sep 04 07:51:36.018 INFO kablam! 172 | use hex::{FromHex, ToHex}; Sep 04 07:51:36.018 INFO kablam! | ^^^^^^^ ^^^^^ Sep 04 07:51:36.018 INFO kablam! | Sep 04 07:51:36.018 INFO kablam! = note: #[warn(unused_imports)] on by default Sep 04 07:51:36.018 INFO kablam! Sep 04 07:51:36.216 INFO kablam! error[E0599]: no method named `to_hex` found for type `&[u8]` in the current scope Sep 04 07:51:36.216 INFO kablam! --> src/lib.rs:176:40 Sep 04 07:51:36.216 INFO kablam! | Sep 04 07:51:36.216 INFO kablam! 176 | assert_eq!("foobar".as_bytes().to_hex(), "666f6f626172"); Sep 04 07:51:36.216 INFO kablam! | ^^^^^^ Sep 04 07:51:36.216 INFO kablam! | Sep 04 07:51:36.216 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.216 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.216 INFO kablam! `use ToHex;` Sep 04 07:51:36.216 INFO kablam! = help: did you mean `to_vec`? Sep 04 07:51:36.216 INFO kablam! Sep 04 07:51:36.219 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.219 INFO kablam! --> src/lib.rs:181:35 Sep 04 07:51:36.219 INFO kablam! | Sep 04 07:51:36.219 INFO kablam! 181 | assert_eq!("666f6f626172".from_hex().unwrap(), Sep 04 07:51:36.219 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.219 INFO kablam! | Sep 04 07:51:36.219 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.219 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.219 INFO kablam! `use FromHex;` Sep 04 07:51:36.219 INFO kablam! Sep 04 07:51:36.221 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.221 INFO kablam! --> src/lib.rs:183:35 Sep 04 07:51:36.221 INFO kablam! | Sep 04 07:51:36.221 INFO kablam! 183 | assert_eq!("666F6F626172".from_hex().unwrap(), Sep 04 07:51:36.221 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.221 INFO kablam! | Sep 04 07:51:36.221 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.221 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.221 INFO kablam! `use FromHex;` Sep 04 07:51:36.221 INFO kablam! Sep 04 07:51:36.223 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.223 INFO kablam! --> src/lib.rs:189:23 Sep 04 07:51:36.223 INFO kablam! | Sep 04 07:51:36.223 INFO kablam! 189 | assert!("666".from_hex().is_err()); Sep 04 07:51:36.223 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.223 INFO kablam! | Sep 04 07:51:36.223 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.223 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.223 INFO kablam! `use FromHex;` Sep 04 07:51:36.223 INFO kablam! Sep 04 07:51:36.225 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.225 INFO kablam! --> src/lib.rs:190:24 Sep 04 07:51:36.225 INFO kablam! | Sep 04 07:51:36.225 INFO kablam! 190 | assert!("66 6".from_hex().is_err()); Sep 04 07:51:36.225 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.225 INFO kablam! | Sep 04 07:51:36.225 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.225 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.226 INFO kablam! `use FromHex;` Sep 04 07:51:36.226 INFO kablam! Sep 04 07:51:36.226 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.226 INFO kablam! --> src/lib.rs:195:24 Sep 04 07:51:36.226 INFO kablam! | Sep 04 07:51:36.226 INFO kablam! 195 | assert!("66y6".from_hex().is_err()); Sep 04 07:51:36.226 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.226 INFO kablam! | Sep 04 07:51:36.226 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.226 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.226 INFO kablam! `use FromHex;` Sep 04 07:51:36.227 INFO kablam! Sep 04 07:51:36.227 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Sep 04 07:51:36.227 INFO kablam! --> src/lib.rs:200:41 Sep 04 07:51:36.227 INFO kablam! | Sep 04 07:51:36.227 INFO kablam! 200 | assert_eq!("666f 6f6\r\n26172 ".from_hex().unwrap(), Sep 04 07:51:36.227 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.227 INFO kablam! | Sep 04 07:51:36.227 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.227 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.227 INFO kablam! `use FromHex;` Sep 04 07:51:36.227 INFO kablam! Sep 04 07:51:36.232 INFO kablam! error[E0599]: no method named `to_hex` found for type `[u8; 1]` in the current scope Sep 04 07:51:36.232 INFO kablam! --> src/lib.rs:207:34 Sep 04 07:51:36.232 INFO kablam! | Sep 04 07:51:36.232 INFO kablam! 207 | assert_eq!([i as u8].to_hex(), format!("{:02x}", i)); Sep 04 07:51:36.232 INFO kablam! | ^^^^^^ Sep 04 07:51:36.232 INFO kablam! | Sep 04 07:51:36.232 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.232 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.232 INFO kablam! `use ToHex;` Sep 04 07:51:36.232 INFO kablam! = help: did you mean `to_vec`? Sep 04 07:51:36.232 INFO kablam! Sep 04 07:51:36.238 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Sep 04 07:51:36.238 INFO kablam! --> src/lib.rs:215:45 Sep 04 07:51:36.238 INFO kablam! | Sep 04 07:51:36.238 INFO kablam! 215 | assert_eq!(format!("{:02x}", i).from_hex().unwrap(), Sep 04 07:51:36.238 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.238 INFO kablam! | Sep 04 07:51:36.238 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.238 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.238 INFO kablam! `use FromHex;` Sep 04 07:51:36.238 INFO kablam! Sep 04 07:51:36.242 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Sep 04 07:51:36.242 INFO kablam! --> src/lib.rs:217:45 Sep 04 07:51:36.242 INFO kablam! | Sep 04 07:51:36.242 INFO kablam! 217 | assert_eq!(format!("{:02X}", i).from_hex().unwrap(), Sep 04 07:51:36.242 INFO kablam! | ^^^^^^^^ Sep 04 07:51:36.242 INFO kablam! | Sep 04 07:51:36.242 INFO kablam! = help: items from traits can only be used if the trait is in scope Sep 04 07:51:36.242 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Sep 04 07:51:36.242 INFO kablam! `use FromHex;` Sep 04 07:51:36.242 INFO kablam! Sep 04 07:51:36.248 INFO kablam! error: aborting due to 11 previous errors Sep 04 07:51:36.248 INFO kablam! Sep 04 07:51:36.248 INFO kablam! Some errors occurred: E0432, E0599. Sep 04 07:51:36.248 INFO kablam! For more information about an error, try `rustc --explain E0432`. Sep 04 07:51:36.256 INFO kablam! error: Could not compile `rustc-hex`. Sep 04 07:51:36.256 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 04 07:51:36.497 INFO kablam! error: build failed Sep 04 07:51:36.498 INFO kablam! su: No module specific data is present Sep 04 07:51:36.911 INFO running `"docker" "rm" "-f" "46f018180cdd527b62b65f0e6595a87ce8b6dd48e09b81bd7ed3b3e386ff8ced"` Sep 04 07:51:36.997 INFO blam! 46f018180cdd527b62b65f0e6595a87ce8b6dd48e09b81bd7ed3b3e386ff8ced