Aug 30 04:57:33.238 INFO checking rustc-hex-1.0.0 against master#ede55518431154bc761f7b2438cce9078c162700 for pr-53707 Aug 30 04:57:33.238 INFO running: cargo +ede55518431154bc761f7b2438cce9078c162700-alt check --frozen --all --all-targets Aug 30 04:57:33.238 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-1/pr-53707/master#ede55518431154bc761f7b2438cce9078c162700:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53707/worker-1/master#ede55518431154bc761f7b2438cce9078c162700:/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 +ede55518431154bc761f7b2438cce9078c162700-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Aug 30 04:57:33.422 INFO blam! 3b0cd582e4b84af8fdc9bf573e097118068d69481ffa99b60bb18a1d63371ad9 Aug 30 04:57:33.424 INFO running `"docker" "start" "-a" "3b0cd582e4b84af8fdc9bf573e097118068d69481ffa99b60bb18a1d63371ad9"` Aug 30 04:57:34.191 INFO kablam! Checking rustc-hex v1.0.0 (file:///source) Aug 30 04:57:34.713 INFO kablam! error[E0432]: unresolved import `hex` Aug 30 04:57:34.713 INFO kablam! --> src/lib.rs:172:9 Aug 30 04:57:34.713 INFO kablam! | Aug 30 04:57:34.713 INFO kablam! 172 | use hex::{FromHex, ToHex}; Aug 30 04:57:34.713 INFO kablam! | ^^^ Maybe a missing `extern crate hex;`? Aug 30 04:57:34.713 INFO kablam! Aug 30 04:57:34.720 INFO kablam! warning: unused imports: `FromHex`, `ToHex` Aug 30 04:57:34.720 INFO kablam! --> src/lib.rs:172:15 Aug 30 04:57:34.720 INFO kablam! | Aug 30 04:57:34.720 INFO kablam! 172 | use hex::{FromHex, ToHex}; Aug 30 04:57:34.720 INFO kablam! | ^^^^^^^ ^^^^^ Aug 30 04:57:34.720 INFO kablam! | Aug 30 04:57:34.720 INFO kablam! = note: #[warn(unused_imports)] on by default Aug 30 04:57:34.720 INFO kablam! Aug 30 04:57:35.053 INFO kablam! error[E0599]: no method named `to_hex` found for type `&[u8]` in the current scope Aug 30 04:57:35.054 INFO kablam! --> src/lib.rs:176:40 Aug 30 04:57:35.054 INFO kablam! | Aug 30 04:57:35.054 INFO kablam! 176 | assert_eq!("foobar".as_bytes().to_hex(), "666f6f626172"); Aug 30 04:57:35.054 INFO kablam! | ^^^^^^ Aug 30 04:57:35.054 INFO kablam! | Aug 30 04:57:35.054 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.054 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.054 INFO kablam! `use ToHex;` Aug 30 04:57:35.054 INFO kablam! = help: did you mean `to_vec`? Aug 30 04:57:35.054 INFO kablam! Aug 30 04:57:35.058 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.058 INFO kablam! --> src/lib.rs:181:35 Aug 30 04:57:35.059 INFO kablam! | Aug 30 04:57:35.059 INFO kablam! 181 | assert_eq!("666f6f626172".from_hex().unwrap(), Aug 30 04:57:35.059 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.059 INFO kablam! | Aug 30 04:57:35.059 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.059 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.059 INFO kablam! `use FromHex;` Aug 30 04:57:35.059 INFO kablam! Aug 30 04:57:35.062 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.062 INFO kablam! --> src/lib.rs:183:35 Aug 30 04:57:35.062 INFO kablam! | Aug 30 04:57:35.062 INFO kablam! 183 | assert_eq!("666F6F626172".from_hex().unwrap(), Aug 30 04:57:35.062 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.062 INFO kablam! | Aug 30 04:57:35.062 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.062 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.062 INFO kablam! `use FromHex;` Aug 30 04:57:35.062 INFO kablam! Aug 30 04:57:35.065 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.065 INFO kablam! --> src/lib.rs:189:23 Aug 30 04:57:35.065 INFO kablam! | Aug 30 04:57:35.065 INFO kablam! 189 | assert!("666".from_hex().is_err()); Aug 30 04:57:35.065 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.065 INFO kablam! | Aug 30 04:57:35.065 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.065 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.065 INFO kablam! `use FromHex;` Aug 30 04:57:35.065 INFO kablam! Aug 30 04:57:35.069 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.069 INFO kablam! --> src/lib.rs:190:24 Aug 30 04:57:35.069 INFO kablam! | Aug 30 04:57:35.069 INFO kablam! 190 | assert!("66 6".from_hex().is_err()); Aug 30 04:57:35.069 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.069 INFO kablam! | Aug 30 04:57:35.069 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.069 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.069 INFO kablam! `use FromHex;` Aug 30 04:57:35.069 INFO kablam! Aug 30 04:57:35.070 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.070 INFO kablam! --> src/lib.rs:195:24 Aug 30 04:57:35.070 INFO kablam! | Aug 30 04:57:35.070 INFO kablam! 195 | assert!("66y6".from_hex().is_err()); Aug 30 04:57:35.070 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.070 INFO kablam! | Aug 30 04:57:35.070 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.070 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.070 INFO kablam! `use FromHex;` Aug 30 04:57:35.070 INFO kablam! Aug 30 04:57:35.071 INFO kablam! error[E0599]: no method named `from_hex` found for type `&'static str` in the current scope Aug 30 04:57:35.071 INFO kablam! --> src/lib.rs:200:41 Aug 30 04:57:35.071 INFO kablam! | Aug 30 04:57:35.071 INFO kablam! 200 | assert_eq!("666f 6f6\r\n26172 ".from_hex().unwrap(), Aug 30 04:57:35.071 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.072 INFO kablam! | Aug 30 04:57:35.072 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.072 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.072 INFO kablam! `use FromHex;` Aug 30 04:57:35.072 INFO kablam! Aug 30 04:57:35.078 INFO kablam! error[E0599]: no method named `to_hex` found for type `[u8; 1]` in the current scope Aug 30 04:57:35.078 INFO kablam! --> src/lib.rs:207:34 Aug 30 04:57:35.078 INFO kablam! | Aug 30 04:57:35.078 INFO kablam! 207 | assert_eq!([i as u8].to_hex(), format!("{:02x}", i)); Aug 30 04:57:35.078 INFO kablam! | ^^^^^^ Aug 30 04:57:35.078 INFO kablam! | Aug 30 04:57:35.078 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.078 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.078 INFO kablam! `use ToHex;` Aug 30 04:57:35.078 INFO kablam! = help: did you mean `to_vec`? Aug 30 04:57:35.078 INFO kablam! Aug 30 04:57:35.088 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Aug 30 04:57:35.088 INFO kablam! --> src/lib.rs:215:45 Aug 30 04:57:35.088 INFO kablam! | Aug 30 04:57:35.088 INFO kablam! 215 | assert_eq!(format!("{:02x}", i).from_hex().unwrap(), Aug 30 04:57:35.088 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.088 INFO kablam! | Aug 30 04:57:35.088 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.088 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.088 INFO kablam! `use FromHex;` Aug 30 04:57:35.088 INFO kablam! Aug 30 04:57:35.094 INFO kablam! error[E0599]: no method named `from_hex` found for type `std::string::String` in the current scope Aug 30 04:57:35.094 INFO kablam! --> src/lib.rs:217:45 Aug 30 04:57:35.094 INFO kablam! | Aug 30 04:57:35.094 INFO kablam! 217 | assert_eq!(format!("{:02X}", i).from_hex().unwrap(), Aug 30 04:57:35.094 INFO kablam! | ^^^^^^^^ Aug 30 04:57:35.094 INFO kablam! | Aug 30 04:57:35.094 INFO kablam! = help: items from traits can only be used if the trait is in scope Aug 30 04:57:35.094 INFO kablam! = note: the following trait is implemented but not in scope, perhaps add a `use` for it: Aug 30 04:57:35.094 INFO kablam! `use FromHex;` Aug 30 04:57:35.094 INFO kablam! Aug 30 04:57:35.102 INFO kablam! error: aborting due to 11 previous errors Aug 30 04:57:35.102 INFO kablam! Aug 30 04:57:35.102 INFO kablam! Some errors occurred: E0432, E0599. Aug 30 04:57:35.102 INFO kablam! For more information about an error, try `rustc --explain E0432`. Aug 30 04:57:35.110 INFO kablam! error: Could not compile `rustc-hex`. Aug 30 04:57:35.110 INFO kablam! warning: build failed, waiting for other jobs to finish... Aug 30 04:57:35.347 INFO kablam! error: build failed Aug 30 04:57:35.349 INFO kablam! su: No module specific data is present Aug 30 04:57:35.813 INFO running `"docker" "rm" "-f" "3b0cd582e4b84af8fdc9bf573e097118068d69481ffa99b60bb18a1d63371ad9"` Aug 30 04:57:35.914 INFO blam! 3b0cd582e4b84af8fdc9bf573e097118068d69481ffa99b60bb18a1d63371ad9