[INFO] crate article-date-extractor 0.1.1 is already in cache
[INFO] checking article-date-extractor-0.1.1 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate article-date-extractor 0.1.1 into /workspace/builds/worker-4/source
[INFO] validating manifest of crates.io crate article-date-extractor 0.1.1 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate article-date-extractor 0.1.1
[INFO] finished tweaking crates.io crate article-date-extractor 0.1.1
[INFO] tweaked toml for crates.io crate article-date-extractor 0.1.1 written to /workspace/builds/worker-4/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] a16e0abbbc730d92ae935a7e42abbea62d9dd398fbaefd94bf1534392da558fc
[INFO] running `"docker" "start" "-a" "a16e0abbbc730d92ae935a7e42abbea62d9dd398fbaefd94bf1534392da558fc"`
[INFO] [stderr]    Compiling itoa v0.4.5
[INFO] [stderr]     Checking new_debug_unreachable v1.0.4
[INFO] [stderr]    Compiling syn v0.15.44
[INFO] [stderr]     Checking bit-vec v0.5.1
[INFO] [stderr]     Checking ucd-util v0.1.8
[INFO] [stderr]    Compiling serde v1.0.106
[INFO] [stderr]    Compiling ryu v1.0.3
[INFO] [stderr]    Compiling rand_os v0.1.3
[INFO] [stderr]     Checking aho-corasick v0.6.10
[INFO] [stderr]     Checking futf v0.1.4
[INFO] [stderr]     Checking num-integer v0.1.42
[INFO] [stderr]     Checking regex-syntax v0.5.6
[INFO] [stderr]     Checking bit-set v0.5.1
[INFO] [stderr]    Compiling rand v0.6.5
[INFO] [stderr]     Checking tendril v0.4.1
[INFO] [stderr]     Checking error-chain v0.10.0
[INFO] [stderr]     Checking num-iter v0.1.40
[INFO] [stderr]     Checking num v0.1.42
[INFO] [stderr]     Checking chrono v0.3.0
[INFO] [stderr]    Compiling phf_generator v0.7.24
[INFO] [stderr]    Compiling string_cache_codegen v0.4.4
[INFO] [stderr]    Compiling phf_codegen v0.7.24
[INFO] [stderr]    Compiling string_cache v0.7.5
[INFO] [stderr]     Checking regex v0.2.11
[INFO] [stderr]    Compiling serde_json v1.0.51
[INFO] [stderr]    Compiling html5ever v0.23.0
[INFO] [stderr]    Compiling markup5ever v0.8.1
[INFO] [stderr]     Checking select v0.4.3
[INFO] [stderr]     Checking article-date-extractor v0.1.1 (/opt/rustwide/workdir)
[INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred
[INFO] [stderr]   --> src/extract_date.rs:22:1
[INFO] [stderr]    |
[INFO] [stderr] 22 | / lazy_static! {
[INFO] [stderr] 23 | |     // Regex by Newspaper3k  - https://github.com/codelucas/newspaper/blob/master/newspaper/urls.py
[INFO] [stderr] 24 | |     static ref RE: Regex =
[INFO] [stderr] 25 | |         Regex::new(r"([\./\-_]{0,1}(19|20)\d{2})[\./\-_]{0,1}(([0-3]{0,1}[0-9][\./\-_])|(\w{3,5}[\./\-_]))([0-3]{0,1}[0-9][\./\-]{0,1})").unwrap();
[INFO] [stderr] 26 | | }
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(deprecated)]` on by default
[INFO] [stderr]    = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred
[INFO] [stderr]    --> src/extract_date.rs:164:5
[INFO] [stderr]     |
[INFO] [stderr] 164 | /     lazy_static! {
[INFO] [stderr] 165 | |         static ref TAG_RE: Regex =
[INFO] [stderr] 166 | |             Regex::new(r"(?i)publishdate|pubdate|timestamp|article_date|articledate|date").unwrap();
[INFO] [stderr] 167 | |     }
[INFO] [stderr]     | |_____^
[INFO] [stderr]     |
[INFO] [stderr]     = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] warning: unnecessary parentheses around function argument
[INFO] [stderr]    --> src/extract_date.rs:258:25
[INFO] [stderr]     |
[INFO] [stderr] 258 |         assert_eq!(Some(("2015-11-30 23:50:48".to_string())),
[INFO] [stderr]     |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(unused_parens)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred
[INFO] [stderr]   --> src/extract_date.rs:22:1
[INFO] [stderr]    |
[INFO] [stderr] 22 | / lazy_static! {
[INFO] [stderr] 23 | |     // Regex by Newspaper3k  - https://github.com/codelucas/newspaper/blob/master/newspaper/urls.py
[INFO] [stderr] 24 | |     static ref RE: Regex =
[INFO] [stderr] 25 | |         Regex::new(r"([\./\-_]{0,1}(19|20)\d{2})[\./\-_]{0,1}(([0-3]{0,1}[0-9][\./\-_])|(\w{3,5}[\./\-_]))([0-3]{0,1}[0-9][\./\-]{0,1})").unwrap();
[INFO] [stderr] 26 | | }
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(deprecated)]` on by default
[INFO] [stderr]    = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred
[INFO] [stderr]    --> src/extract_date.rs:164:5
[INFO] [stderr]     |
[INFO] [stderr] 164 | /     lazy_static! {
[INFO] [stderr] 165 | |         static ref TAG_RE: Regex =
[INFO] [stderr] 166 | |             Regex::new(r"(?i)publishdate|pubdate|timestamp|article_date|articledate|date").unwrap();
[INFO] [stderr] 167 | |     }
[INFO] [stderr]     | |_____^
[INFO] [stderr]     |
[INFO] [stderr]     = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr]     Finished dev [unoptimized + debuginfo] target(s) in 1m 01s
[INFO] running `"docker" "inspect" "a16e0abbbc730d92ae935a7e42abbea62d9dd398fbaefd94bf1534392da558fc"`
[INFO] running `"docker" "rm" "-f" "a16e0abbbc730d92ae935a7e42abbea62d9dd398fbaefd94bf1534392da558fc"`
[INFO] [stdout] a16e0abbbc730d92ae935a7e42abbea62d9dd398fbaefd94bf1534392da558fc
