Aug 31 15:15:42.543 INFO checking rustc-hex-1.0.0 against try#a5b9f2cc0cdaca8edf23a89c649279de2c91cd3b for pr-53578 Aug 31 15:15:42.543 INFO running: cargo +a5b9f2cc0cdaca8edf23a89c649279de2c91cd3b-alt check --frozen --all --all-targets Aug 31 15:15:42.543 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-0/pr-53578/try#a5b9f2cc0cdaca8edf23a89c649279de2c91cd3b:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53578/worker-0/try#a5b9f2cc0cdaca8edf23a89c649279de2c91cd3b:/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 +a5b9f2cc0cdaca8edf23a89c649279de2c91cd3b-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Aug 31 15:15:42.709 INFO blam! 443faf688a47c2e0052f67567b2230d603fe22eafeb8a1d54e9f3c3a1c555355 Aug 31 15:15:42.712 INFO running `"docker" "start" "-a" "443faf688a47c2e0052f67567b2230d603fe22eafeb8a1d54e9f3c3a1c555355"` Aug 31 15:15:43.394 INFO kablam! Checking rustc-hex v1.0.0 (file:///source) Aug 31 15:15:43.774 INFO kablam! error[E0432]: unresolved import `hex` Aug 31 15:15:43.774 INFO kablam! --> src/lib.rs:172:9 Aug 31 15:15:43.774 INFO kablam! | Aug 31 15:15:43.774 INFO kablam! 172 | use hex::{FromHex, ToHex}; Aug 31 15:15:43.774 INFO kablam! | ^^^ Maybe a missing `extern crate hex;`? Aug 31 15:15:43.774 INFO kablam! Aug 31 15:15:43.778 INFO kablam! warning: unused imports: `FromHex`, `ToHex` Aug 31 15:15:43.778 INFO kablam! --> src/lib.rs:172:15 Aug 31 15:15:43.778 INFO kablam! | Aug 31 15:15:43.778 INFO kablam! 172 | use hex::{FromHex, ToHex}; Aug 31 15:15:43.778 INFO kablam! | ^^^^^^^ ^^^^^ Aug 31 15:15:43.778 INFO kablam! | Aug 31 15:15:43.778 INFO kablam! = note: #[warn(unused_imports)] on by default Aug 31 15:15:43.778 INFO kablam! Aug 31 15:15:44.037 INFO kablam! error[E0599]: no method named `to_hex` found for type `&[u8]` in the current scope Aug 31 15:15:44.038 INFO kablam! --> src/lib.rs:176:40 Aug 31 15:15:44.038 INFO kablam! | Aug 31 15:15:44.038 INFO kablam! 176 | assert_eq!("foobar".as_bytes().to_hex(), "666f6f626172"); Aug 31 15:15:44.038 INFO kablam! | ^^^^^^ Aug 31 15:15:44.038 INFO kablam! | Aug 31 15:15:44.038 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.038 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.038 INFO kablam! `use ToHex;` Aug 31 15:15:44.038 INFO kablam! = help: did you mean `to_vec`? Aug 31 15:15:44.038 INFO kablam! Aug 31 15:15:44.043 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.043 INFO kablam! --> src/lib.rs:181:35 Aug 31 15:15:44.043 INFO kablam! | Aug 31 15:15:44.043 INFO kablam! 181 | assert_eq!("666f6f626172".from_hex().unwrap(), Aug 31 15:15:44.043 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.043 INFO kablam! | Aug 31 15:15:44.043 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.043 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.043 INFO kablam! `use FromHex;` Aug 31 15:15:44.043 INFO kablam! Aug 31 15:15:44.046 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.046 INFO kablam! --> src/lib.rs:183:35 Aug 31 15:15:44.046 INFO kablam! | Aug 31 15:15:44.046 INFO kablam! 183 | assert_eq!("666F6F626172".from_hex().unwrap(), Aug 31 15:15:44.046 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.046 INFO kablam! | Aug 31 15:15:44.046 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.046 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.046 INFO kablam! `use FromHex;` Aug 31 15:15:44.046 INFO kablam! Aug 31 15:15:44.049 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.049 INFO kablam! --> src/lib.rs:189:23 Aug 31 15:15:44.049 INFO kablam! | Aug 31 15:15:44.049 INFO kablam! 189 | assert!("666".from_hex().is_err()); Aug 31 15:15:44.049 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.049 INFO kablam! | Aug 31 15:15:44.049 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.049 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.050 INFO kablam! `use FromHex;` Aug 31 15:15:44.050 INFO kablam! Aug 31 15:15:44.052 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.052 INFO kablam! --> src/lib.rs:190:24 Aug 31 15:15:44.052 INFO kablam! | Aug 31 15:15:44.053 INFO kablam! 190 | assert!("66 6".from_hex().is_err()); Aug 31 15:15:44.053 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.053 INFO kablam! | Aug 31 15:15:44.053 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.053 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.053 INFO kablam! `use FromHex;` Aug 31 15:15:44.053 INFO kablam! Aug 31 15:15:44.054 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.054 INFO kablam! --> src/lib.rs:195:24 Aug 31 15:15:44.054 INFO kablam! | Aug 31 15:15:44.054 INFO kablam! 195 | assert!("66y6".from_hex().is_err()); Aug 31 15:15:44.054 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.054 INFO kablam! | Aug 31 15:15:44.054 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.054 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.054 INFO kablam! `use FromHex;` Aug 31 15:15:44.054 INFO kablam! Aug 31 15:15:44.055 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 31 15:15:44.055 INFO kablam! --> src/lib.rs:200:41 Aug 31 15:15:44.055 INFO kablam! | Aug 31 15:15:44.056 INFO kablam! 200 | assert_eq!("666f 6f6\r\n26172 ".from_hex().unwrap(), Aug 31 15:15:44.056 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.056 INFO kablam! | Aug 31 15:15:44.056 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.056 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.056 INFO kablam! `use FromHex;` Aug 31 15:15:44.056 INFO kablam! Aug 31 15:15:44.062 INFO kablam! error[E0599]: no method named `to_hex` found for type `[u8; 1]` in the current scope Aug 31 15:15:44.062 INFO kablam! --> src/lib.rs:207:34 Aug 31 15:15:44.062 INFO kablam! | Aug 31 15:15:44.062 INFO kablam! 207 | assert_eq!([i as u8].to_hex(), format!("{:02x}", i)); Aug 31 15:15:44.062 INFO kablam! | ^^^^^^ Aug 31 15:15:44.062 INFO kablam! | Aug 31 15:15:44.062 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.062 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.062 INFO kablam! `use ToHex;` Aug 31 15:15:44.062 INFO kablam! = help: did you mean `to_vec`? Aug 31 15:15:44.062 INFO kablam! Aug 31 15:15:44.072 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Aug 31 15:15:44.072 INFO kablam! --> src/lib.rs:215:45 Aug 31 15:15:44.072 INFO kablam! | Aug 31 15:15:44.072 INFO kablam! 215 | assert_eq!(format!("{:02x}", i).from_hex().unwrap(), Aug 31 15:15:44.072 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.072 INFO kablam! | Aug 31 15:15:44.072 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.072 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.072 INFO kablam! `use FromHex;` Aug 31 15:15:44.072 INFO kablam! Aug 31 15:15:44.078 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Aug 31 15:15:44.078 INFO kablam! --> src/lib.rs:217:45 Aug 31 15:15:44.078 INFO kablam! | Aug 31 15:15:44.078 INFO kablam! 217 | assert_eq!(format!("{:02X}", i).from_hex().unwrap(), Aug 31 15:15:44.078 INFO kablam! | ^^^^^^^^ Aug 31 15:15:44.078 INFO kablam! | Aug 31 15:15:44.078 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 31 15:15:44.078 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 31 15:15:44.078 INFO kablam! `use FromHex;` Aug 31 15:15:44.078 INFO kablam! Aug 31 15:15:44.087 INFO kablam! error: aborting due to 11 previous errors Aug 31 15:15:44.087 INFO kablam! Aug 31 15:15:44.087 INFO kablam! Some errors occurred: E0432, E0599. Aug 31 15:15:44.087 INFO kablam! For more information about an error, try `rustc --explain E0432`. Aug 31 15:15:44.096 INFO kablam! error: Could not compile `rustc-hex`. Aug 31 15:15:44.096 INFO kablam! warning: build failed, waiting for other jobs to finish... Aug 31 15:15:44.288 INFO kablam! error: build failed Aug 31 15:15:44.290 INFO kablam! su: No module specific data is present Aug 31 15:15:44.633 INFO running `"docker" "rm" "-f" "443faf688a47c2e0052f67567b2230d603fe22eafeb8a1d54e9f3c3a1c555355"` Aug 31 15:15:44.733 INFO blam! 443faf688a47c2e0052f67567b2230d603fe22eafeb8a1d54e9f3c3a1c555355