[INFO] fetching crate kilac 0.2.0... [INFO] testing kilac-0.2.0 against 1.55.0 for beta-1.56-1 [INFO] extracting crate kilac 0.2.0 into /workspace/builds/worker-66/source [INFO] validating manifest of crates.io crate kilac 0.2.0 on toolchain 1.55.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.55.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate kilac 0.2.0 [INFO] finished tweaking crates.io crate kilac 0.2.0 [INFO] tweaked toml for crates.io crate kilac 0.2.0 written to /workspace/builds/worker-66/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.55.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.55.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Downloading crates ... [INFO] [stderr] Downloaded pretty_assertions v0.5.1 [INFO] [stderr] Downloaded rand_xoshiro v0.1.0 [INFO] [stderr] Downloaded criterion v0.2.11 [INFO] [stderr] Downloaded criterion-plot v0.3.1 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:a89201d6b5b9fd45c15d5952ece0a0129e7e80cb26ec023fd59cf09bc26f1604" "/opt/rustwide/cargo-home/bin/cargo" "+1.55.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 13c5d399cb6f0435de66f115a9a6f124dbfd2cbd68d4dbe5c5fe2536270cefb4 [INFO] running `Command { std: "docker" "start" "-a" "13c5d399cb6f0435de66f115a9a6f124dbfd2cbd68d4dbe5c5fe2536270cefb4", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "13c5d399cb6f0435de66f115a9a6f124dbfd2cbd68d4dbe5c5fe2536270cefb4", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "13c5d399cb6f0435de66f115a9a6f124dbfd2cbd68d4dbe5c5fe2536270cefb4", kill_on_drop: false }` [INFO] [stdout] 13c5d399cb6f0435de66f115a9a6f124dbfd2cbd68d4dbe5c5fe2536270cefb4 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:a89201d6b5b9fd45c15d5952ece0a0129e7e80cb26ec023fd59cf09bc26f1604" "/opt/rustwide/cargo-home/bin/cargo" "+1.55.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 79bf07dc3652766860cf430efa3e210dbf8513a77c4508f51500f51833422ecc [INFO] running `Command { std: "docker" "start" "-a" "79bf07dc3652766860cf430efa3e210dbf8513a77c4508f51500f51833422ecc", kill_on_drop: false }` [INFO] [stderr] Compiling kilac v0.2.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition. [INFO] [stdout] --> src/calc/ctx.rs:14:19 [INFO] [stdout] | [INFO] [stdout] 14 | fn get(&self, String) -> Result; [INFO] [stdout] | ^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: String` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:67:18 [INFO] [stdout] | [INFO] [stdout] 67 | let parsed = try!(parse(lex(&s), c.clone())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:99:23 [INFO] [stdout] | [INFO] [stdout] 99 | match try!(eval(i.clone(), c.clone())) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:156:26 [INFO] [stdout] | [INFO] [stdout] 156 | ast_to_value(try!(c.get(s))) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.67s [INFO] running `Command { std: "docker" "inspect" "79bf07dc3652766860cf430efa3e210dbf8513a77c4508f51500f51833422ecc", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "79bf07dc3652766860cf430efa3e210dbf8513a77c4508f51500f51833422ecc", kill_on_drop: false }` [INFO] [stdout] 79bf07dc3652766860cf430efa3e210dbf8513a77c4508f51500f51833422ecc [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:a89201d6b5b9fd45c15d5952ece0a0129e7e80cb26ec023fd59cf09bc26f1604" "/opt/rustwide/cargo-home/bin/cargo" "+1.55.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 9b2b7dcf974e355b08b7ca2793c91a5261526563c34921b899730782f87e7a3e [INFO] running `Command { std: "docker" "start" "-a" "9b2b7dcf974e355b08b7ca2793c91a5261526563c34921b899730782f87e7a3e", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling autocfg v1.0.1 [INFO] [stderr] Compiling lazy_static v1.4.0 [INFO] [stderr] Compiling crossbeam-utils v0.8.5 [INFO] [stderr] Compiling semver v1.0.4 [INFO] [stderr] Compiling serde v1.0.130 [INFO] [stderr] Compiling memchr v2.4.1 [INFO] [stderr] Compiling crossbeam-epoch v0.9.5 [INFO] [stderr] Compiling proc-macro2 v1.0.29 [INFO] [stderr] Compiling ryu v1.0.5 [INFO] [stderr] Compiling rayon-core v1.9.1 [INFO] [stderr] Compiling scopeguard v1.1.0 [INFO] [stderr] Compiling unicode-xid v0.2.2 [INFO] [stderr] Compiling either v1.6.1 [INFO] [stderr] Compiling itoa v0.4.8 [INFO] [stderr] Compiling syn v1.0.76 [INFO] [stderr] Compiling serde_json v1.0.67 [INFO] [stderr] Compiling rand_core v0.4.2 [INFO] [stderr] Compiling unicode-width v0.1.8 [INFO] [stderr] Compiling regex-automata v0.1.10 [INFO] [stderr] Compiling serde_derive v1.0.130 [INFO] [stderr] Compiling byteorder v1.4.3 [INFO] [stderr] Compiling same-file v1.0.6 [INFO] [stderr] Compiling bitflags v1.3.2 [INFO] [stderr] Compiling difference v2.0.0 [INFO] [stderr] Compiling ansi_term v0.11.0 [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition. [INFO] [stdout] --> src/calc/ctx.rs:14:19 [INFO] [stdout] | [INFO] [stdout] 14 | fn get(&self, String) -> Result; [INFO] [stdout] | ^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: String` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling num_cpus v1.13.0 [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:67:18 [INFO] [stdout] | [INFO] [stdout] 67 | let parsed = try!(parse(lex(&s), c.clone())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling atty v0.2.14 [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:99:23 [INFO] [stdout] | [INFO] [stdout] 99 | match try!(eval(i.clone(), c.clone())) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:156:26 [INFO] [stdout] | [INFO] [stdout] 156 | ast_to_value(try!(c.get(s))) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling itertools v0.8.2 [INFO] [stderr] Compiling walkdir v2.3.2 [INFO] [stderr] Compiling textwrap v0.11.0 [INFO] [stderr] Compiling rand_core v0.3.1 [INFO] [stderr] Compiling rand_os v0.1.3 [INFO] [stderr] Compiling pretty_assertions v0.5.1 [INFO] [stderr] Compiling rand_xoshiro v0.1.0 [INFO] [stderr] Compiling clap v2.33.3 [INFO] [stderr] Compiling memoffset v0.6.4 [INFO] [stderr] Compiling num-traits v0.2.14 [INFO] [stderr] Compiling rayon v1.5.1 [INFO] [stderr] Compiling crossbeam-channel v0.5.1 [INFO] [stderr] Compiling rustc_version v0.4.0 [INFO] [stderr] Compiling csv-core v0.1.10 [INFO] [stderr] Compiling quote v1.0.9 [INFO] [stderr] Compiling cast v0.2.7 [INFO] [stderr] Compiling crossbeam-deque v0.8.1 [INFO] [stderr] Compiling criterion-plot v0.3.1 [INFO] [stderr] Compiling bstr v0.2.16 [INFO] [stderr] Compiling csv v1.1.6 [INFO] [stderr] Compiling tinytemplate v1.2.1 [INFO] [stderr] Compiling criterion v0.2.11 [INFO] [stderr] Compiling kilac v0.2.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: anonymous parameters are deprecated and will be removed in the next edition. [INFO] [stdout] --> src/calc/ctx.rs:14:19 [INFO] [stdout] | [INFO] [stdout] 14 | fn get(&self, String) -> Result; [INFO] [stdout] | ^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: String` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stdout] = note: for more information, see issue #41686 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:67:18 [INFO] [stdout] | [INFO] [stdout] 67 | let parsed = try!(parse(lex(&s), c.clone())); [INFO] [stdout] | ^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:99:23 [INFO] [stdout] | [INFO] [stdout] 99 | match try!(eval(i.clone(), c.clone())) { [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stdout] --> src/calc/mod.rs:156:26 [INFO] [stdout] | [INFO] [stdout] 156 | ast_to_value(try!(c.get(s))) [INFO] [stdout] | ^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 4 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 15.10s [INFO] running `Command { std: "docker" "inspect" "9b2b7dcf974e355b08b7ca2793c91a5261526563c34921b899730782f87e7a3e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9b2b7dcf974e355b08b7ca2793c91a5261526563c34921b899730782f87e7a3e", kill_on_drop: false }` [INFO] [stdout] 9b2b7dcf974e355b08b7ca2793c91a5261526563c34921b899730782f87e7a3e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-66/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:a89201d6b5b9fd45c15d5952ece0a0129e7e80cb26ec023fd59cf09bc26f1604" "/opt/rustwide/cargo-home/bin/cargo" "+1.55.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] a65687d31b99e4dc6886c2177bd671ea2888b9302acddef2f82c60e1b4d67b65 [INFO] running `Command { std: "docker" "start" "-a" "a65687d31b99e4dc6886c2177bd671ea2888b9302acddef2f82c60e1b4d67b65", kill_on_drop: false }` [INFO] [stderr] warning: anonymous parameters are deprecated and will be removed in the next edition. [INFO] [stderr] --> src/calc/ctx.rs:14:19 [INFO] [stderr] | [INFO] [stderr] 14 | fn get(&self, String) -> Result; [INFO] [stderr] | ^^^^^^ help: try naming the parameter or explicitly ignoring it: `_: String` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(anonymous_parameters)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018! [INFO] [stderr] = note: for more information, see issue #41686 [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/calc/mod.rs:67:18 [INFO] [stderr] | [INFO] [stderr] 67 | let parsed = try!(parse(lex(&s), c.clone())); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/calc/mod.rs:99:23 [INFO] [stderr] | [INFO] [stderr] 99 | match try!(eval(i.clone(), c.clone())) { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `try`: use the `?` operator instead [INFO] [stderr] --> src/calc/mod.rs:156:26 [INFO] [stderr] | [INFO] [stderr] 156 | ast_to_value(try!(c.get(s))) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: `kilac` (lib) generated 4 warnings [INFO] [stderr] warning: `kilac` (lib test) generated 4 warnings (4 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/kilac-8d37f76c71befe85) [INFO] [stdout] [INFO] [stdout] running 28 tests [INFO] [stdout] test calc::parser::applicators::tests::test_optimize ... ok [INFO] [stdout] test calc::lexer::tests::test_lexer_simple ... ok [INFO] [stdout] test calc::parser::tests::test_plus ... ok [INFO] [stdout] test calc::lexer::tests::test_function_kipa_interpolate ... ok [INFO] [stdout] test calc::tests::test_add ... ok [INFO] [stdout] test calc::tests::test_arithmetic ... ok [INFO] [stdout] test calc::tests::test_div ... ok [INFO] [stdout] test calc::tests::test_mod ... ok [INFO] [stdout] test calc::tests::test_min ... ok [INFO] [stdout] test calc::tests::test_mul ... ok [INFO] [stdout] test calc::tests::test_pow ... ok [INFO] [stdout] test calc::tests::test_sub ... ok [INFO] [stdout] test calc::tests::unary ... ok [INFO] [stdout] test kipac::tests::test_abs ... ok [INFO] [stdout] test kipac::tests::test_aikavali ... ok [INFO] [stdout] test kipac::tests::test_ceil ... ok [INFO] [stdout] test kipac::tests::test_exp ... ok [INFO] [stdout] test kipac::tests::test_floor ... ok [INFO] [stdout] test kipac::tests::test_interpoloi ... ok [INFO] [stdout] test kipac::tests::test_ln ... ok [INFO] [stdout] test kipac::tests::test_log ... ok [INFO] [stdout] test kipac::tests::test_max ... ok [INFO] [stdout] test kipac::tests::test_mean ... ok [INFO] [stdout] test kipac::tests::test_min ... ok [INFO] [stdout] test kipac::tests::test_median ... ok [INFO] [stdout] test kipac::tests::test_mod ... ok [INFO] [stdout] test kipac::tests::test_pow ... ok [INFO] [stdout] test kipac::tests::test_sqrt ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 28 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/kilac-e909da0ece857bb6) [INFO] [stdout] [INFO] [stderr] Doc-tests kilac [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "a65687d31b99e4dc6886c2177bd671ea2888b9302acddef2f82c60e1b4d67b65", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a65687d31b99e4dc6886c2177bd671ea2888b9302acddef2f82c60e1b4d67b65", kill_on_drop: false }` [INFO] [stdout] a65687d31b99e4dc6886c2177bd671ea2888b9302acddef2f82c60e1b4d67b65