[INFO] crate nom 5.0.1 is already in cache [INFO] checking nom-5.0.1 against master#4ff32c07da9d97e6dc315a4a5c9ffbb797cb27bb for pr-64672 [INFO] extracting crate nom 5.0.1 into work/builds/worker-3/source [INFO] validating manifest of crates.io crate nom 5.0.1 on toolchain 4ff32c07da9d97e6dc315a4a5c9ffbb797cb27bb [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+4ff32c07da9d97e6dc315a4a5c9ffbb797cb27bb" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate nom 5.0.1 [INFO] removed 2 missing examples [INFO] removed 17 missing tests [INFO] finished tweaking crates.io crate nom 5.0.1 [INFO] tweaked toml for crates.io crate nom 5.0.1 written to work/builds/worker-3/source/Cargo.toml [INFO] crate crates.io crate nom 5.0.1 already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+4ff32c07da9d97e6dc315a4a5c9ffbb797cb27bb" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/mnt/big/crater/work/builds/worker-3/source:/opt/rustwide/workdir:ro,Z" "-v" "/mnt/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+4ff32c07da9d97e6dc315a4a5c9ffbb797cb27bb" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] a417b946174894200e4b19ff91889f9c466d31b2ea43ccddb77ae8aaf8505952 [INFO] running `"docker" "start" "-a" "a417b946174894200e4b19ff91889f9c466d31b2ea43ccddb77ae8aaf8505952"` [INFO] [stderr] Compiling jemalloc-sys v0.1.8 [INFO] [stderr] Compiling nom v5.0.1 (/opt/rustwide/workdir) [INFO] [stderr] Checking bstr v0.2.7 [INFO] [stderr] Checking clap v2.33.0 [INFO] [stderr] Checking tinytemplate v1.0.2 [INFO] [stderr] Checking rayon-core v1.5.0 [INFO] [stderr] Checking rayon v1.1.0 [INFO] [stderr] Checking csv v1.1.1 [INFO] [stderr] Checking criterion v0.2.11 [INFO] [stderr] Checking jemallocator v0.1.9 [INFO] [stderr] error: couldn't read benches/http.rs: No such file or directory (os error 2) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: couldn't read benches/ini_complete.rs: No such file or directory (os error 2) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: could not compile `nom`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `nom`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: use of deprecated item 'ws': whitespace parsing only works with macros and will not be updated anymore [INFO] [stderr] --> tests/json.rs:36:1 [INFO] [stderr] | [INFO] [stderr] 36 | / named!( [INFO] [stderr] 37 | | array>, [INFO] [stderr] 38 | | ws!(delimited!( [INFO] [stderr] 39 | | char!('['), [INFO] [stderr] ... | [INFO] [stderr] 42 | | )) [INFO] [stderr] 43 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'ws': whitespace parsing only works with macros and will not be updated anymore [INFO] [stderr] --> tests/json.rs:45:1 [INFO] [stderr] | [INFO] [stderr] 45 | / named!( [INFO] [stderr] 46 | | key_value<(&str, JsonValue)>, [INFO] [stderr] 47 | | ws!(separated_pair!(string, char!(':'), value)) [INFO] [stderr] 48 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'ws': whitespace parsing only works with macros and will not be updated anymore [INFO] [stderr] --> tests/json.rs:50:1 [INFO] [stderr] | [INFO] [stderr] 50 | / named!( [INFO] [stderr] 51 | | hash>, [INFO] [stderr] 52 | | ws!(map!( [INFO] [stderr] 53 | | delimited!(char!('{'), separated_list!(char!(','), key_value), char!('}')), [INFO] [stderr] ... | [INFO] [stderr] 61 | | )) [INFO] [stderr] 62 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'ws': whitespace parsing only works with macros and will not be updated anymore [INFO] [stderr] --> tests/json.rs:64:1 [INFO] [stderr] | [INFO] [stderr] 64 | / named!( [INFO] [stderr] 65 | | value, [INFO] [stderr] 66 | | ws!(alt!( [INFO] [stderr] 67 | | hash => { |h| JsonValue::Object(h) } | [INFO] [stderr] ... | [INFO] [stderr] 71 | | )) [INFO] [stderr] 72 | | ); [INFO] [stderr] | |__^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "a417b946174894200e4b19ff91889f9c466d31b2ea43ccddb77ae8aaf8505952"` [INFO] running `"docker" "rm" "-f" "a417b946174894200e4b19ff91889f9c466d31b2ea43ccddb77ae8aaf8505952"` [INFO] [stdout] a417b946174894200e4b19ff91889f9c466d31b2ea43ccddb77ae8aaf8505952