[INFO] crate gears 0.1.7 is already in cache [INFO] testing gears-0.1.7 against beta-2020-06-03 for beta-1.45-1 [INFO] extracting crate gears 0.1.7 into /workspace/builds/worker-11/source [INFO] validating manifest of crates.io crate gears 0.1.7 on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate gears 0.1.7 [INFO] finished tweaking crates.io crate gears 0.1.7 [INFO] tweaked toml for crates.io crate gears 0.1.7 written to /workspace/builds/worker-11/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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=warn" "-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" "+beta-2020-06-03" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 3c6ae96089bacc3771a82da300a870b584d1895dbe2a2da6931978f11d3ec85a [INFO] running `"docker" "start" "-a" "3c6ae96089bacc3771a82da300a870b584d1895dbe2a2da6931978f11d3ec85a"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling ratel v0.7.0 [INFO] [stderr] Compiling error-chain v0.12.2 [INFO] [stderr] Compiling peg v0.5.7 [INFO] [stderr] Compiling queryst v2.0.1 [INFO] [stderr] Compiling uuid v0.7.4 [INFO] [stderr] Compiling jsonapi v0.6.6 [INFO] [stderr] Compiling gears v0.1.7 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/model.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `I18NString` [INFO] [stderr] --> src/structure/modelconfig.rs:1:31 [INFO] [stderr] | [INFO] [stderr] 1 | use super::common::{Document, I18NString}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/dispatcher.rs:7:49 [INFO] [stderr] | [INFO] [stderr] 7 | type Receivers<'a> = HashMap>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Dispatchable + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `uuid::Uuid` [INFO] [stderr] --> src/validation/gxmodel.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use uuid::Uuid; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::collections::HashSet` [INFO] [stderr] --> src/validation/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use std::collections::HashSet; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:120:502 [INFO] [stderr] | [INFO] [stderr] 120 | fn __parse_integer < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __choice_res = { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { '0' ... '9' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[0-9]" ) , } } else { __state . mark_failure ( __pos , "[0-9]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , n ) => { Matched ( __pos , { n.parse().unwrap() } ) } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = __parse_integer_variable ( __input , __state , __pos , context ) ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_integer ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_arithmetic_test ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } } } } } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:601 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:615 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:600 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:614 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:957 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:971 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:20:61 [INFO] [stderr] | [INFO] [stderr] 20 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:26:49 [INFO] [stderr] | [INFO] [stderr] 26 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:38:59 [INFO] [stderr] | [INFO] [stderr] 38 | error!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:39:59 [INFO] [stderr] | [INFO] [stderr] 39 | panic!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:46:61 [INFO] [stderr] | [INFO] [stderr] 46 | error!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:47:61 [INFO] [stderr] | [INFO] [stderr] 47 | panic!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `model` [INFO] [stderr] --> src/validation/gxmodel.rs:12:21 [INFO] [stderr] | [INFO] [stderr] 12 | pub fn validate(model: &GxModel) -> ValidationErrors { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_model` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/validation/gxmodel.rs:13:13 [INFO] [stderr] | [INFO] [stderr] 13 | let mut errors = Vec::::new(); [INFO] [stderr] | ----^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/util/fs.rs:163:21 [INFO] [stderr] | [INFO] [stderr] 163 | let mut doc = match ::from_json(&json) { [INFO] [stderr] | ----^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] [INFO] [stderr] warning: function is never used: `pad_translation_doc` [INFO] [stderr] --> src/structure/model.rs:40:4 [INFO] [stderr] | [INFO] [stderr] 40 | fn pad_translation_doc( [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> src/util/fs.rs:184:5 [INFO] [stderr] | [INFO] [stderr] 184 | model.add_locale(&default_locale); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] warning: 24 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 36.42s [INFO] running `"docker" "inspect" "3c6ae96089bacc3771a82da300a870b584d1895dbe2a2da6931978f11d3ec85a"` [INFO] running `"docker" "rm" "-f" "3c6ae96089bacc3771a82da300a870b584d1895dbe2a2da6931978f11d3ec85a"` [INFO] [stdout] 3c6ae96089bacc3771a82da300a870b584d1895dbe2a2da6931978f11d3ec85a [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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=warn" "-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" "+beta-2020-06-03" "test" "--frozen" "--no-run"` [INFO] [stdout] 861d1d0579f836f3ac17f24ccd8b069990982394363c97cf697ab80adf88d952 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "861d1d0579f836f3ac17f24ccd8b069990982394363c97cf697ab80adf88d952"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling gears v0.1.7 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/model.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `I18NString` [INFO] [stderr] --> src/structure/modelconfig.rs:1:31 [INFO] [stderr] | [INFO] [stderr] 1 | use super::common::{Document, I18NString}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/dispatcher.rs:7:49 [INFO] [stderr] | [INFO] [stderr] 7 | type Receivers<'a> = HashMap>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Dispatchable + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `uuid::Uuid` [INFO] [stderr] --> src/validation/gxmodel.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use uuid::Uuid; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::collections::HashSet` [INFO] [stderr] --> src/validation/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use std::collections::HashSet; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:120:502 [INFO] [stderr] | [INFO] [stderr] 120 | fn __parse_integer < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __choice_res = { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { '0' ... '9' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[0-9]" ) , } } else { __state . mark_failure ( __pos , "[0-9]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , n ) => { Matched ( __pos , { n.parse().unwrap() } ) } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = __parse_integer_variable ( __input , __state , __pos , context ) ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_integer ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_arithmetic_test ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } } } } } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:601 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:615 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:600 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:614 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:957 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:971 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:20:61 [INFO] [stderr] | [INFO] [stderr] 20 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:26:49 [INFO] [stderr] | [INFO] [stderr] 26 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:38:59 [INFO] [stderr] | [INFO] [stderr] 38 | error!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:39:59 [INFO] [stderr] | [INFO] [stderr] 39 | panic!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:46:61 [INFO] [stderr] | [INFO] [stderr] 46 | error!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:47:61 [INFO] [stderr] | [INFO] [stderr] 47 | panic!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `model` [INFO] [stderr] --> src/validation/gxmodel.rs:12:21 [INFO] [stderr] | [INFO] [stderr] 12 | pub fn validate(model: &GxModel) -> ValidationErrors { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_model` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/validation/gxmodel.rs:13:13 [INFO] [stderr] | [INFO] [stderr] 13 | let mut errors = Vec::::new(); [INFO] [stderr] | ----^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/util/fs.rs:163:21 [INFO] [stderr] | [INFO] [stderr] 163 | let mut doc = match ::from_json(&json) { [INFO] [stderr] | ----^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] [INFO] [stderr] warning: function is never used: `pad_translation_doc` [INFO] [stderr] --> src/structure/model.rs:40:4 [INFO] [stderr] | [INFO] [stderr] 40 | fn pad_translation_doc( [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> src/util/fs.rs:184:5 [INFO] [stderr] | [INFO] [stderr] 184 | model.add_locale(&default_locale); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] warning: 24 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused import: `gears::util::fs::*` [INFO] [stderr] --> tests/test_structure_model.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use gears::util::fs::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `gears::structure::model::*` [INFO] [stderr] --> tests/test_structure_model.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use gears::structure::model::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `gears::*` [INFO] [stderr] --> tests/flox_test.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use gears::*; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `gears::util::fs::*` [INFO] [stderr] --> tests/test_translate.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use gears::util::fs::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `tempdir::TempDir` [INFO] [stderr] --> tests/test_util_fs.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | use tempdir::TempDir; [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `gears::util::fs::*` [INFO] [stderr] --> tests/test_validation.rs:10:5 [INFO] [stderr] | [INFO] [stderr] 10 | use gears::util::fs::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:27:61 [INFO] [stderr] | [INFO] [stderr] 27 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> tests/common/mod.rs:34:49 [INFO] [stderr] | [INFO] [stderr] 34 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> tests/xflow_run_001.rs:37:13 [INFO] [stderr] | [INFO] [stderr] 37 | xfrunner.run(); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> tests/xflow_run_001.rs:72:17 [INFO] [stderr] | [INFO] [stderr] 72 | xfrunner.step(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> tests/xflow_run_001.rs:116:13 [INFO] [stderr] | [INFO] [stderr] 116 | xfrunner.run(); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] error: could not compile `gears`. [INFO] [stderr] [INFO] [stderr] Caused by: [INFO] [stderr] process didn't exit successfully: `rustc --crate-name test_translate tests/test_translate.rs --error-format=json --json=diagnostic-rendered-ansi --emit=dep-info,link -Cembed-bitcode=no -C debuginfo=2 --test -C metadata=aa82e131899f8d7e -C extra-filename=-aa82e131899f8d7e --out-dir /opt/rustwide/target/debug/deps -L dependency=/opt/rustwide/target/debug/deps --extern env_logger=/opt/rustwide/target/debug/deps/libenv_logger-a1362c286da84dce.rlib --extern gears=/opt/rustwide/target/debug/deps/libgears.rlib --extern gears=/opt/rustwide/target/debug/deps/libgears.so --extern glob=/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib --extern jsonapi=/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib --extern log=/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib --extern ratel=/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib --extern serde=/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib --extern serde_derive=/opt/rustwide/target/debug/deps/libserde_derive-07cd6319b613227d.so --extern serde_json=/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib --extern serde_yaml=/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib --extern tempdir=/opt/rustwide/target/debug/deps/libtempdir-46e586d20a20ad3e.rlib --extern uuid=/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib --cap-lints=warn` (signal: 9, SIGKILL: kill) [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.test_structure_translation.etl1i256-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4" "/opt/rustwide/target/debug/deps/test_structure_translation-070bc07f18f970a4.fed4usn2tb40s0j.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0a07979da1fa7aa2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-171ede43b21d034c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-ea69ac8b5a0936d1.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-6be6d4d5d08eb152.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-c718480fe68c7cec.rlib" "/opt/rustwide/target/debug/deps/libgears.rlib" "/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib" "/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib" "/opt/rustwide/target/debug/deps/librand-32ca9d04a8072615.rlib" "/opt/rustwide/target/debug/deps/librand_xorshift-76feb1be4b384d8c.rlib" "/opt/rustwide/target/debug/deps/librand_pcg-765ae007666635d1.rlib" "/opt/rustwide/target/debug/deps/librand_hc-68dde4176773bfba.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-eed2f9bcc51aafd2.rlib" "/opt/rustwide/target/debug/deps/librand_isaac-3afb46e714f27b23.rlib" "/opt/rustwide/target/debug/deps/librand_core-35d9152f59e9c107.rlib" "/opt/rustwide/target/debug/deps/librand_os-34eb9190028b9c20.rlib" "/opt/rustwide/target/debug/deps/librand_jitter-090e0608e0e97bb5.rlib" "/opt/rustwide/target/debug/deps/librand_core-fc3b85f002e2a6f9.rlib" "/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib" "/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib" "/opt/rustwide/target/debug/deps/liberror_chain-4617854137ae1d5f.rlib" "/opt/rustwide/target/debug/deps/libbacktrace-2603cfdb11ebad36.rlib" "/opt/rustwide/target/debug/deps/libobject-28d15ce18808e2c6.rlib" "/opt/rustwide/target/debug/deps/libaddr2line-ecb9f5e624d94a20.rlib" "/opt/rustwide/target/debug/deps/libgimli-9c3a14f143e50336.rlib" "/opt/rustwide/target/debug/deps/librustc_demangle-96825a490c3cad52.rlib" "/opt/rustwide/target/debug/deps/libqueryst-5b01723df3d2ddb2.rlib" "/opt/rustwide/target/debug/deps/liburl-8fcd65f1306150c3.rlib" "/opt/rustwide/target/debug/deps/libpercent_encoding-d4cc324235a66d36.rlib" "/opt/rustwide/target/debug/deps/libidna-d4994925bf4430c7.rlib" "/opt/rustwide/target/debug/deps/libunicode_normalization-467beec5965936c6.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-0ffc8bb136e2289a.rlib" "/opt/rustwide/target/debug/deps/libunicode_bidi-879207079127f333.rlib" "/opt/rustwide/target/debug/deps/libmatches-6c7348f3fc3f1329.rlib" "/opt/rustwide/target/debug/deps/libregex-6cad3429391fd829.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-7892513b60c771f1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-43f5652db6007dc5.rlib" "/opt/rustwide/target/debug/deps/libucd_util-1f813f73804b0485.rlib" "/opt/rustwide/target/debug/deps/libthread_local-c818e360ff3bdad8.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-d32113057ff2e86f.rlib" "/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib" "/opt/rustwide/target/debug/deps/libdtoa-e4db6fc4cc7027f2.rlib" "/opt/rustwide/target/debug/deps/libyaml_rust-03fa6c68b20880fb.rlib" "/opt/rustwide/target/debug/deps/liblinked_hash_map-3058c160e575e067.rlib" "/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib" "/opt/rustwide/target/debug/deps/libryu-e41edf2aeea0eb4e.rlib" "/opt/rustwide/target/debug/deps/libitoa-b97c5d72b295aa2e.rlib" "/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib" "/opt/rustwide/target/debug/deps/libenv_logger-a1362c286da84dce.rlib" "/opt/rustwide/target/debug/deps/libregex-9d7abde785476cae.rlib" "/opt/rustwide/target/debug/deps/libthread_local-8d83e4901f0f282f.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-54fdda16b5257135.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-0b4c429c60f353ff.rlib" "/opt/rustwide/target/debug/deps/libmemchr-f8260b06e2dd8573.rlib" "/opt/rustwide/target/debug/deps/libatty-732074f349571b64.rlib" "/opt/rustwide/target/debug/deps/liblibc-2e17c5c99334ee98.rlib" "/opt/rustwide/target/debug/deps/libhumantime-dfd7af29c5915f0f.rlib" "/opt/rustwide/target/debug/deps/libquick_error-a8ed19302f3259f8.rlib" "/opt/rustwide/target/debug/deps/libtermcolor-b0aa0fca5eab8966.rlib" "/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: collect2: fatal error: ld terminated with signal 9 [Killed] [INFO] [stderr] compilation terminated. [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.xfstate.ek02k2it-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35" "/opt/rustwide/target/debug/deps/xfstate-11cad196a46eab35.1hf1d7bmpon5g0qa.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0a07979da1fa7aa2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-171ede43b21d034c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-ea69ac8b5a0936d1.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-6be6d4d5d08eb152.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-c718480fe68c7cec.rlib" "/opt/rustwide/target/debug/deps/libgears.rlib" "/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib" "/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib" "/opt/rustwide/target/debug/deps/librand-32ca9d04a8072615.rlib" "/opt/rustwide/target/debug/deps/librand_xorshift-76feb1be4b384d8c.rlib" "/opt/rustwide/target/debug/deps/librand_pcg-765ae007666635d1.rlib" "/opt/rustwide/target/debug/deps/librand_hc-68dde4176773bfba.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-eed2f9bcc51aafd2.rlib" "/opt/rustwide/target/debug/deps/librand_isaac-3afb46e714f27b23.rlib" "/opt/rustwide/target/debug/deps/librand_core-35d9152f59e9c107.rlib" "/opt/rustwide/target/debug/deps/librand_os-34eb9190028b9c20.rlib" "/opt/rustwide/target/debug/deps/librand_jitter-090e0608e0e97bb5.rlib" "/opt/rustwide/target/debug/deps/librand_core-fc3b85f002e2a6f9.rlib" "/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib" "/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib" "/opt/rustwide/target/debug/deps/liberror_chain-4617854137ae1d5f.rlib" "/opt/rustwide/target/debug/deps/libbacktrace-2603cfdb11ebad36.rlib" "/opt/rustwide/target/debug/deps/libobject-28d15ce18808e2c6.rlib" "/opt/rustwide/target/debug/deps/liblibc-2e17c5c99334ee98.rlib" "/opt/rustwide/target/debug/deps/libaddr2line-ecb9f5e624d94a20.rlib" "/opt/rustwide/target/debug/deps/libgimli-9c3a14f143e50336.rlib" "/opt/rustwide/target/debug/deps/librustc_demangle-96825a490c3cad52.rlib" "/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "/opt/rustwide/target/debug/deps/libqueryst-5b01723df3d2ddb2.rlib" "/opt/rustwide/target/debug/deps/liburl-8fcd65f1306150c3.rlib" "/opt/rustwide/target/debug/deps/libpercent_encoding-d4cc324235a66d36.rlib" "/opt/rustwide/target/debug/deps/libidna-d4994925bf4430c7.rlib" "/opt/rustwide/target/debug/deps/libunicode_normalization-467beec5965936c6.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-0ffc8bb136e2289a.rlib" "/opt/rustwide/target/debug/deps/libunicode_bidi-879207079127f333.rlib" "/opt/rustwide/target/debug/deps/libmatches-6c7348f3fc3f1329.rlib" "/opt/rustwide/target/debug/deps/libregex-6cad3429391fd829.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-7892513b60c771f1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-43f5652db6007dc5.rlib" "/opt/rustwide/target/debug/deps/libucd_util-1f813f73804b0485.rlib" "/opt/rustwide/target/debug/deps/libthread_local-c818e360ff3bdad8.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-d32113057ff2e86f.rlib" "/opt/rustwide/target/debug/deps/libmemchr-f8260b06e2dd8573.rlib" "/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib" "/opt/rustwide/target/debug/deps/libdtoa-e4db6fc4cc7027f2.rlib" "/opt/rustwide/target/debug/deps/libyaml_rust-03fa6c68b20880fb.rlib" "/opt/rustwide/target/debug/deps/liblinked_hash_map-3058c160e575e067.rlib" "/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib" "/opt/rustwide/target/debug/deps/libryu-e41edf2aeea0eb4e.rlib" "/opt/rustwide/target/debug/deps/libitoa-b97c5d72b295aa2e.rlib" "/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: collect2: fatal error: ld terminated with signal 9 [Killed] [INFO] [stderr] compilation terminated. [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/model.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `glob::glob_with` [INFO] [stderr] --> src/structure/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use glob::glob_with; [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `I18NString` [INFO] [stderr] --> src/structure/modelconfig.rs:1:31 [INFO] [stderr] | [INFO] [stderr] 1 | use super::common::{Document, I18NString}; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/dispatcher.rs:7:49 [INFO] [stderr] | [INFO] [stderr] 7 | type Receivers<'a> = HashMap>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Dispatchable + 'a` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `uuid::Uuid` [INFO] [stderr] --> src/validation/gxmodel.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use uuid::Uuid; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::collections::HashSet` [INFO] [stderr] --> src/validation/gxmodel.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use std::collections::HashSet; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:120:502 [INFO] [stderr] | [INFO] [stderr] 120 | fn __parse_integer < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __choice_res = { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { '0' ... '9' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[0-9]" ) , } } else { __state . mark_failure ( __pos , "[0-9]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , n ) => { Matched ( __pos , { n.parse().unwrap() } ) } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = __parse_integer_variable ( __input , __state , __pos , context ) ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __choice_res = { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_integer ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } ; match __choice_res { Matched ( __pos , __value ) => Matched ( __pos , __value ) , Failed => { let __seq_res = slice_eq ( __input , __state , __pos , "(" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = __parse_arithmetic_test ( __input , __state , __pos , context ) ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = slice_eq ( __input , __state , __pos , ")" ) ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } } } } } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:601 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:124:615 [INFO] [stderr] | [INFO] [stderr] 124 | fn __parse_boolean_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < bool > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:600 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:136:614 [INFO] [stderr] | [INFO] [stderr] 136 | fn __parse_integer_variable < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < i64 > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { match { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:957 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> /opt/rustwide/target/debug/build/gears-e1bccb2fee04fe2f/out/flox_grammar.rs:158:971 [INFO] [stderr] | [INFO] [stderr] 158 | fn __parse_var_name < 'input > ( __input : & 'input str , __state : & mut ParseState < 'input > , __pos : usize , context : &XFState ) -> RuleResult < &'input str > { # ! [ allow ( non_snake_case , unused ) ] { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = slice_eq ( __input , __state , __pos , "$" ) ; match __seq_res { Matched ( __pos , _ ) => { { let __seq_res = { let str_start = __pos ; match { let mut __repeat_pos = __pos ; let mut __repeat_value = vec ! ( ) ; loop { let __pos = __repeat_pos ; let __step_res = if __input . len ( ) > __pos { let ( __ch , __next ) = char_range_at ( __input , __pos ) ; match __ch { 'A' ... 'Z' | 'a' ... 'z' => Matched ( __next , ( ) ) , _ => __state . mark_failure ( __pos , "[A-Za-z]" ) , } } else { __state . mark_failure ( __pos , "[A-Za-z]" ) } ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; __repeat_value . push ( __value ) ; } , Failed => { break ; } } } if __repeat_value . len ( ) >= 1 { Matched ( __repeat_pos , ( ) ) } else { Failed } } { Matched ( __newpos , _ ) => { Matched ( __newpos , & __input [ str_start .. __newpos ] ) } , Failed => Failed , } } ; match __seq_res { Matched ( __pos , s ) => { { let __seq_res = { let mut __repeat_pos = __pos ; loop { let __pos = __repeat_pos ; let __step_res = __parse_non_var_start ( __input , __state , __pos , context ) ; match __step_res { Matched ( __newpos , __value ) => { __repeat_pos = __newpos ; } , Failed => { break ; } } } Matched ( __repeat_pos , ( ) ) } ; match __seq_res { Matched ( __pos , _ ) => { Matched ( __pos , { s } ) } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } Failed => Failed , } } } [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: 3 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:20:61 [INFO] [stderr] | [INFO] [stderr] 20 | Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:26:49 [INFO] [stderr] | [INFO] [stderr] 26 | panic!("couldn't read {}: {}", display, Error::description(&why)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.test_xflow.dhsuhp7i-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a" "/opt/rustwide/target/debug/deps/test_xflow-2f29e9fdefd6650a.498b4bag9z97ic0k.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0a07979da1fa7aa2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-171ede43b21d034c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-ea69ac8b5a0936d1.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-6be6d4d5d08eb152.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-c718480fe68c7cec.rlib" "/opt/rustwide/target/debug/deps/libgears.rlib" "/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib" "/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib" "/opt/rustwide/target/debug/deps/librand-32ca9d04a8072615.rlib" "/opt/rustwide/target/debug/deps/librand_xorshift-76feb1be4b384d8c.rlib" "/opt/rustwide/target/debug/deps/librand_pcg-765ae007666635d1.rlib" "/opt/rustwide/target/debug/deps/librand_hc-68dde4176773bfba.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-eed2f9bcc51aafd2.rlib" "/opt/rustwide/target/debug/deps/librand_isaac-3afb46e714f27b23.rlib" "/opt/rustwide/target/debug/deps/librand_core-35d9152f59e9c107.rlib" "/opt/rustwide/target/debug/deps/librand_os-34eb9190028b9c20.rlib" "/opt/rustwide/target/debug/deps/librand_jitter-090e0608e0e97bb5.rlib" "/opt/rustwide/target/debug/deps/librand_core-fc3b85f002e2a6f9.rlib" "/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib" "/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib" "/opt/rustwide/target/debug/deps/liberror_chain-4617854137ae1d5f.rlib" "/opt/rustwide/target/debug/deps/libbacktrace-2603cfdb11ebad36.rlib" "/opt/rustwide/target/debug/deps/libobject-28d15ce18808e2c6.rlib" "/opt/rustwide/target/debug/deps/libaddr2line-ecb9f5e624d94a20.rlib" "/opt/rustwide/target/debug/deps/libgimli-9c3a14f143e50336.rlib" "/opt/rustwide/target/debug/deps/librustc_demangle-96825a490c3cad52.rlib" "/opt/rustwide/target/debug/deps/libqueryst-5b01723df3d2ddb2.rlib" "/opt/rustwide/target/debug/deps/liburl-8fcd65f1306150c3.rlib" "/opt/rustwide/target/debug/deps/libpercent_encoding-d4cc324235a66d36.rlib" "/opt/rustwide/target/debug/deps/libidna-d4994925bf4430c7.rlib" "/opt/rustwide/target/debug/deps/libunicode_normalization-467beec5965936c6.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-0ffc8bb136e2289a.rlib" "/opt/rustwide/target/debug/deps/libunicode_bidi-879207079127f333.rlib" "/opt/rustwide/target/debug/deps/libmatches-6c7348f3fc3f1329.rlib" "/opt/rustwide/target/debug/deps/libregex-6cad3429391fd829.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-7892513b60c771f1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-43f5652db6007dc5.rlib" "/opt/rustwide/target/debug/deps/libucd_util-1f813f73804b0485.rlib" "/opt/rustwide/target/debug/deps/libthread_local-c818e360ff3bdad8.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-d32113057ff2e86f.rlib" "/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib" "/opt/rustwide/target/debug/deps/libdtoa-e4db6fc4cc7027f2.rlib" "/opt/rustwide/target/debug/deps/libyaml_rust-03fa6c68b20880fb.rlib" "/opt/rustwide/target/debug/deps/liblinked_hash_map-3058c160e575e067.rlib" "/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib" "/opt/rustwide/target/debug/deps/libryu-e41edf2aeea0eb4e.rlib" "/opt/rustwide/target/debug/deps/libitoa-b97c5d72b295aa2e.rlib" "/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib" "/opt/rustwide/target/debug/deps/libenv_logger-a1362c286da84dce.rlib" "/opt/rustwide/target/debug/deps/libregex-9d7abde785476cae.rlib" "/opt/rustwide/target/debug/deps/libthread_local-8d83e4901f0f282f.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-54fdda16b5257135.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-0b4c429c60f353ff.rlib" "/opt/rustwide/target/debug/deps/libmemchr-f8260b06e2dd8573.rlib" "/opt/rustwide/target/debug/deps/libatty-732074f349571b64.rlib" "/opt/rustwide/target/debug/deps/liblibc-2e17c5c99334ee98.rlib" "/opt/rustwide/target/debug/deps/libhumantime-dfd7af29c5915f0f.rlib" "/opt/rustwide/target/debug/deps/libquick_error-a8ed19302f3259f8.rlib" "/opt/rustwide/target/debug/deps/libtermcolor-b0aa0fca5eab8966.rlib" "/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: collect2: fatal error: ld terminated with signal 9 [Killed] [INFO] [stderr] compilation terminated. [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.test_generation_xflow_to_es5.a3m8ohyc-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf" "/opt/rustwide/target/debug/deps/test_generation_xflow_to_es5-1c7c5d1528722abf.1wndsm6x5zm19dsh.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0a07979da1fa7aa2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-171ede43b21d034c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-ea69ac8b5a0936d1.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-6be6d4d5d08eb152.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-c718480fe68c7cec.rlib" "/opt/rustwide/target/debug/deps/libgears.rlib" "/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib" "/opt/rustwide/target/debug/deps/librand-32ca9d04a8072615.rlib" "/opt/rustwide/target/debug/deps/librand_xorshift-76feb1be4b384d8c.rlib" "/opt/rustwide/target/debug/deps/librand_pcg-765ae007666635d1.rlib" "/opt/rustwide/target/debug/deps/librand_hc-68dde4176773bfba.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-eed2f9bcc51aafd2.rlib" "/opt/rustwide/target/debug/deps/librand_isaac-3afb46e714f27b23.rlib" "/opt/rustwide/target/debug/deps/librand_core-35d9152f59e9c107.rlib" "/opt/rustwide/target/debug/deps/librand_os-34eb9190028b9c20.rlib" "/opt/rustwide/target/debug/deps/librand_jitter-090e0608e0e97bb5.rlib" "/opt/rustwide/target/debug/deps/librand_core-fc3b85f002e2a6f9.rlib" "/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib" "/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib" "/opt/rustwide/target/debug/deps/liberror_chain-4617854137ae1d5f.rlib" "/opt/rustwide/target/debug/deps/libbacktrace-2603cfdb11ebad36.rlib" "/opt/rustwide/target/debug/deps/libobject-28d15ce18808e2c6.rlib" "/opt/rustwide/target/debug/deps/libaddr2line-ecb9f5e624d94a20.rlib" "/opt/rustwide/target/debug/deps/libgimli-9c3a14f143e50336.rlib" "/opt/rustwide/target/debug/deps/librustc_demangle-96825a490c3cad52.rlib" "/opt/rustwide/target/debug/deps/libqueryst-5b01723df3d2ddb2.rlib" "/opt/rustwide/target/debug/deps/liburl-8fcd65f1306150c3.rlib" "/opt/rustwide/target/debug/deps/libpercent_encoding-d4cc324235a66d36.rlib" "/opt/rustwide/target/debug/deps/libidna-d4994925bf4430c7.rlib" "/opt/rustwide/target/debug/deps/libunicode_normalization-467beec5965936c6.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-0ffc8bb136e2289a.rlib" "/opt/rustwide/target/debug/deps/libunicode_bidi-879207079127f333.rlib" "/opt/rustwide/target/debug/deps/libmatches-6c7348f3fc3f1329.rlib" "/opt/rustwide/target/debug/deps/libregex-6cad3429391fd829.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-7892513b60c771f1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-43f5652db6007dc5.rlib" "/opt/rustwide/target/debug/deps/libucd_util-1f813f73804b0485.rlib" "/opt/rustwide/target/debug/deps/libthread_local-c818e360ff3bdad8.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-d32113057ff2e86f.rlib" "/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib" "/opt/rustwide/target/debug/deps/libdtoa-e4db6fc4cc7027f2.rlib" "/opt/rustwide/target/debug/deps/libyaml_rust-03fa6c68b20880fb.rlib" "/opt/rustwide/target/debug/deps/liblinked_hash_map-3058c160e575e067.rlib" "/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib" "/opt/rustwide/target/debug/deps/libryu-e41edf2aeea0eb4e.rlib" "/opt/rustwide/target/debug/deps/libitoa-b97c5d72b295aa2e.rlib" "/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib" "/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib" "/opt/rustwide/target/debug/deps/libenv_logger-a1362c286da84dce.rlib" "/opt/rustwide/target/debug/deps/libregex-9d7abde785476cae.rlib" "/opt/rustwide/target/debug/deps/libthread_local-8d83e4901f0f282f.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-54fdda16b5257135.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-0b4c429c60f353ff.rlib" "/opt/rustwide/target/debug/deps/libmemchr-f8260b06e2dd8573.rlib" "/opt/rustwide/target/debug/deps/libatty-732074f349571b64.rlib" "/opt/rustwide/target/debug/deps/liblibc-2e17c5c99334ee98.rlib" "/opt/rustwide/target/debug/deps/libhumantime-dfd7af29c5915f0f.rlib" "/opt/rustwide/target/debug/deps/libquick_error-a8ed19302f3259f8.rlib" "/opt/rustwide/target/debug/deps/libtermcolor-b0aa0fca5eab8966.rlib" "/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: collect2: fatal error: ld terminated with signal 9 [Killed] [INFO] [stderr] compilation terminated. [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.test_structure_form.6sr04qqp-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271" "/opt/rustwide/target/debug/deps/test_structure_form-1e9df7bc63784271.2q84m6hgwqfu32ww.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-0a07979da1fa7aa2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libterm-171ede43b21d034c.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-ea69ac8b5a0936d1.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-6be6d4d5d08eb152.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-c718480fe68c7cec.rlib" "/opt/rustwide/target/debug/deps/libgears.rlib" "/opt/rustwide/target/debug/deps/libratel-fae402428c2d3436.rlib" "/opt/rustwide/target/debug/deps/libglob-3b54178588ab8838.rlib" "/opt/rustwide/target/debug/deps/libjsonapi-8c3729efc1c02138.rlib" "/opt/rustwide/target/debug/deps/liberror_chain-4617854137ae1d5f.rlib" "/opt/rustwide/target/debug/deps/libbacktrace-2603cfdb11ebad36.rlib" "/opt/rustwide/target/debug/deps/libobject-28d15ce18808e2c6.rlib" "/opt/rustwide/target/debug/deps/libaddr2line-ecb9f5e624d94a20.rlib" "/opt/rustwide/target/debug/deps/libgimli-9c3a14f143e50336.rlib" "/opt/rustwide/target/debug/deps/librustc_demangle-96825a490c3cad52.rlib" "/opt/rustwide/target/debug/deps/libqueryst-5b01723df3d2ddb2.rlib" "/opt/rustwide/target/debug/deps/liburl-8fcd65f1306150c3.rlib" "/opt/rustwide/target/debug/deps/libpercent_encoding-d4cc324235a66d36.rlib" "/opt/rustwide/target/debug/deps/libidna-d4994925bf4430c7.rlib" "/opt/rustwide/target/debug/deps/libunicode_normalization-467beec5965936c6.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-0ffc8bb136e2289a.rlib" "/opt/rustwide/target/debug/deps/libunicode_bidi-879207079127f333.rlib" "/opt/rustwide/target/debug/deps/libmatches-6c7348f3fc3f1329.rlib" "/opt/rustwide/target/debug/deps/libregex-6cad3429391fd829.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-7892513b60c771f1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-43f5652db6007dc5.rlib" "/opt/rustwide/target/debug/deps/libucd_util-1f813f73804b0485.rlib" "/opt/rustwide/target/debug/deps/libthread_local-c818e360ff3bdad8.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-d32113057ff2e86f.rlib" "/opt/rustwide/target/debug/deps/libserde_yaml-f2657d83500fd056.rlib" "/opt/rustwide/target/debug/deps/libdtoa-e4db6fc4cc7027f2.rlib" "/opt/rustwide/target/debug/deps/libyaml_rust-03fa6c68b20880fb.rlib" "/opt/rustwide/target/debug/deps/liblinked_hash_map-3058c160e575e067.rlib" "/opt/rustwide/target/debug/deps/libuuid-7bd897b976639440.rlib" "/opt/rustwide/target/debug/deps/librand-32ca9d04a8072615.rlib" "/opt/rustwide/target/debug/deps/librand_xorshift-76feb1be4b384d8c.rlib" "/opt/rustwide/target/debug/deps/librand_pcg-765ae007666635d1.rlib" "/opt/rustwide/target/debug/deps/librand_hc-68dde4176773bfba.rlib" "/opt/rustwide/target/debug/deps/librand_chacha-eed2f9bcc51aafd2.rlib" "/opt/rustwide/target/debug/deps/librand_isaac-3afb46e714f27b23.rlib" "/opt/rustwide/target/debug/deps/librand_core-35d9152f59e9c107.rlib" "/opt/rustwide/target/debug/deps/librand_os-34eb9190028b9c20.rlib" "/opt/rustwide/target/debug/deps/librand_jitter-090e0608e0e97bb5.rlib" "/opt/rustwide/target/debug/deps/librand_core-fc3b85f002e2a6f9.rlib" "/opt/rustwide/target/debug/deps/libserde_json-dc210ab01b7572d8.rlib" "/opt/rustwide/target/debug/deps/libryu-e41edf2aeea0eb4e.rlib" "/opt/rustwide/target/debug/deps/libitoa-b97c5d72b295aa2e.rlib" "/opt/rustwide/target/debug/deps/libserde-91bcddecf7613a4b.rlib" "/opt/rustwide/target/debug/deps/libenv_logger-a1362c286da84dce.rlib" "/opt/rustwide/target/debug/deps/libregex-9d7abde785476cae.rlib" "/opt/rustwide/target/debug/deps/libthread_local-8d83e4901f0f282f.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-36bd8bbfaaa85bd1.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-54fdda16b5257135.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-0b4c429c60f353ff.rlib" "/opt/rustwide/target/debug/deps/libmemchr-f8260b06e2dd8573.rlib" "/opt/rustwide/target/debug/deps/libatty-732074f349571b64.rlib" "/opt/rustwide/target/debug/deps/liblibc-2e17c5c99334ee98.rlib" "/opt/rustwide/target/debug/deps/libhumantime-dfd7af29c5915f0f.rlib" "/opt/rustwide/target/debug/deps/libquick_error-a8ed19302f3259f8.rlib" "/opt/rustwide/target/debug/deps/libtermcolor-b0aa0fca5eab8966.rlib" "/opt/rustwide/target/debug/deps/liblog-3d65ebee37a7b6c8.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-0d7329a98a9ffead.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lutil" "-ldl" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: collect2: fatal error: ld terminated with signal 9 [Killed] [INFO] [stderr] compilation terminated. [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:38:59 [INFO] [stderr] | [INFO] [stderr] 38 | error!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:39:59 [INFO] [stderr] | [INFO] [stderr] 39 | panic!("couldn't create {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:46:61 [INFO] [stderr] | [INFO] [stderr] 46 | error!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/util/fs.rs:47:61 [INFO] [stderr] | [INFO] [stderr] 47 | panic!("couldn't write to {}: {}", display, why.description()); [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `model` [INFO] [stderr] --> src/validation/gxmodel.rs:12:21 [INFO] [stderr] | [INFO] [stderr] 12 | pub fn validate(model: &GxModel) -> ValidationErrors { [INFO] [stderr] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_model` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/validation/gxmodel.rs:13:13 [INFO] [stderr] | [INFO] [stderr] 13 | let mut errors = Vec::::new(); [INFO] [stderr] | ----^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/util/fs.rs:163:21 [INFO] [stderr] | [INFO] [stderr] 163 | let mut doc = match ::from_json(&json) { [INFO] [stderr] | ----^^^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] [INFO] [stderr] warning: function is never used: `pad_translation_doc` [INFO] [stderr] --> src/structure/model.rs:40:4 [INFO] [stderr] | [INFO] [stderr] 40 | fn pad_translation_doc( [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused `std::result::Result` that must be used [INFO] [stderr] --> src/util/fs.rs:184:5 [INFO] [stderr] | [INFO] [stderr] 184 | model.add_locale(&default_locale); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_must_use)]` on by default [INFO] [stderr] = note: this `Result` may be an `Err` variant, which should be handled [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: 24 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: 1 warning emitted [INFO] [stderr] [INFO] [stderr] warning: 1 warning emitted [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "861d1d0579f836f3ac17f24ccd8b069990982394363c97cf697ab80adf88d952"` [INFO] running `"docker" "rm" "-f" "861d1d0579f836f3ac17f24ccd8b069990982394363c97cf697ab80adf88d952"` [INFO] [stdout] 861d1d0579f836f3ac17f24ccd8b069990982394363c97cf697ab80adf88d952