[INFO] crate rna-ss-params 0.1.17 is already in cache [INFO] testing rna-ss-params-0.1.17 against beta-2020-06-03 for beta-1.45-1 [INFO] extracting crate rna-ss-params 0.1.17 into /workspace/builds/worker-7/source [INFO] validating manifest of crates.io crate rna-ss-params 0.1.17 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 rna-ss-params 0.1.17 [INFO] finished tweaking crates.io crate rna-ss-params 0.1.17 [INFO] tweaked toml for crates.io crate rna-ss-params 0.1.17 written to /workspace/builds/worker-7/source/Cargo.toml [INFO] crate crates.io crate rna-ss-params 0.1.17 already has a lockfile, it will not be regenerated [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-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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] [stdout] 9ad7157d68f8cf35320848f2d8b136c8ef385715d1a32e0eae7d877a453a81a1 [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" "9ad7157d68f8cf35320848f2d8b136c8ef385715d1a32e0eae7d877a453a81a1"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling libc v0.2.70 [INFO] [stderr] Compiling hashbrown v0.3.1 [INFO] [stderr] Compiling time v0.1.43 [INFO] [stderr] Compiling bio-seq-algos v0.1.17 [INFO] [stderr] Compiling rna-ss-params v0.1.17 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::bulge_loop_params::*` [INFO] [stderr] --> src/main.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use rna_ss_params::bulge_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::internal_loop_params::*` [INFO] [stderr] --> src/main.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | use rna_ss_params::internal_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `EXP_INIT_HL_DELTA_FES` [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_EXP_INIT_HL_DELTA_FES` [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/main.rs:16:7 [INFO] [stderr] | [INFO] [stderr] 16 | let mut output_file_path = Path::new("./src/compiled_free_energy_params.rs"); [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 `INIT_BL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:24:7 [INFO] [stderr] | [INFO] [stderr] 24 | let INIT_BL_DELTA_FES: Vec = [ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_bl_delta_fes` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_snake_case)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable `THREE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:31:11 [INFO] [stderr] | [INFO] [stderr] 31 | let mut THREE_PRIME_DE_DELTA_FES: DeDeltaFes = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `three_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `FIVE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:49:11 [INFO] [stderr] | [INFO] [stderr] 49 | let mut FIVE_PRIME_DE_DELTA_FES = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `five_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:67:11 [INFO] [stderr] | [INFO] [stderr] 67 | let mut INIT_HL_DELTA_FES: Vec = vec![0., 0., 0., 5.4, 5.6, 5.7, 5.4, 6.0, 5.5, 6.4].iter().map(|&x| {scale(x)}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `EXP_INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `exp_init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:75:7 [INFO] [stderr] | [INFO] [stderr] 75 | let INIT_IL_DELTA_FES: Vec = vec![ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:81:11 [INFO] [stderr] | [INFO] [stderr] 81 | let mut TWO_VS_3_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `OTHER_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:86:11 [INFO] [stderr] | [INFO] [stderr] 86 | let mut OTHER_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `other_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_1_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:91:11 [INFO] [stderr] | [INFO] [stderr] 91 | let mut ONE_VS_1_IL_DELTA_FES = [[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_1_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:284:11 [INFO] [stderr] | [INFO] [stderr] 284 | let mut ONE_VS_2_IL_DELTA_FES = [[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1017:11 [INFO] [stderr] | [INFO] [stderr] 1017 | let mut TWO_VS_2_IL_DELTA_FES = [[[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `STACK_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1638:11 [INFO] [stderr] | [INFO] [stderr] 1638 | let mut STACK_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `stack_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `HL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1656:11 [INFO] [stderr] | [INFO] [stderr] 1656 | let mut HL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `hl_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1693:11 [INFO] [stderr] | [INFO] [stderr] 1693 | let mut IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_MANY_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1730:11 [INFO] [stderr] | [INFO] [stderr] 1730 | let mut ONE_VS_MANY_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_many_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1767:11 [INFO] [stderr] | [INFO] [stderr] 1767 | let mut TWO_VS_3_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ML_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1804:11 [INFO] [stderr] | [INFO] [stderr] 1804 | let mut ML_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `ml_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: 21 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 34.37s [INFO] running `"docker" "inspect" "9ad7157d68f8cf35320848f2d8b136c8ef385715d1a32e0eae7d877a453a81a1"` [INFO] running `"docker" "rm" "-f" "9ad7157d68f8cf35320848f2d8b136c8ef385715d1a32e0eae7d877a453a81a1"` [INFO] [stdout] 9ad7157d68f8cf35320848f2d8b136c8ef385715d1a32e0eae7d877a453a81a1 [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] a3a420cc05efdd0cd45e26fad6d6189957e50bdae0dfdeee16932e5545f0fa35 [INFO] running `"docker" "start" "-a" "a3a420cc05efdd0cd45e26fad6d6189957e50bdae0dfdeee16932e5545f0fa35"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling rna-ss-params v0.1.17 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::bulge_loop_params::*` [INFO] [stderr] --> src/main.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use rna_ss_params::bulge_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::internal_loop_params::*` [INFO] [stderr] --> src/main.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | use rna_ss_params::internal_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `EXP_INIT_HL_DELTA_FES` [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_EXP_INIT_HL_DELTA_FES` [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/main.rs:16:7 [INFO] [stderr] | [INFO] [stderr] 16 | let mut output_file_path = Path::new("./src/compiled_free_energy_params.rs"); [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 `INIT_BL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:24:7 [INFO] [stderr] | [INFO] [stderr] 24 | let INIT_BL_DELTA_FES: Vec = [ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_bl_delta_fes` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_snake_case)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable `THREE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:31:11 [INFO] [stderr] | [INFO] [stderr] 31 | let mut THREE_PRIME_DE_DELTA_FES: DeDeltaFes = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `three_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `FIVE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:49:11 [INFO] [stderr] | [INFO] [stderr] 49 | let mut FIVE_PRIME_DE_DELTA_FES = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `five_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:67:11 [INFO] [stderr] | [INFO] [stderr] 67 | let mut INIT_HL_DELTA_FES: Vec = vec![0., 0., 0., 5.4, 5.6, 5.7, 5.4, 6.0, 5.5, 6.4].iter().map(|&x| {scale(x)}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `EXP_INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `exp_init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:75:7 [INFO] [stderr] | [INFO] [stderr] 75 | let INIT_IL_DELTA_FES: Vec = vec![ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:81:11 [INFO] [stderr] | [INFO] [stderr] 81 | let mut TWO_VS_3_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `OTHER_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:86:11 [INFO] [stderr] | [INFO] [stderr] 86 | let mut OTHER_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `other_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_1_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:91:11 [INFO] [stderr] | [INFO] [stderr] 91 | let mut ONE_VS_1_IL_DELTA_FES = [[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_1_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:284:11 [INFO] [stderr] | [INFO] [stderr] 284 | let mut ONE_VS_2_IL_DELTA_FES = [[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1017:11 [INFO] [stderr] | [INFO] [stderr] 1017 | let mut TWO_VS_2_IL_DELTA_FES = [[[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `STACK_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1638:11 [INFO] [stderr] | [INFO] [stderr] 1638 | let mut STACK_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `stack_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `HL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1656:11 [INFO] [stderr] | [INFO] [stderr] 1656 | let mut HL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `hl_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1693:11 [INFO] [stderr] | [INFO] [stderr] 1693 | let mut IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_MANY_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1730:11 [INFO] [stderr] | [INFO] [stderr] 1730 | let mut ONE_VS_MANY_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_many_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1767:11 [INFO] [stderr] | [INFO] [stderr] 1767 | let mut TWO_VS_3_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ML_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1804:11 [INFO] [stderr] | [INFO] [stderr] 1804 | let mut ML_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `ml_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: 21 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 25.61s [INFO] running `"docker" "inspect" "a3a420cc05efdd0cd45e26fad6d6189957e50bdae0dfdeee16932e5545f0fa35"` [INFO] running `"docker" "rm" "-f" "a3a420cc05efdd0cd45e26fad6d6189957e50bdae0dfdeee16932e5545f0fa35"` [INFO] [stdout] a3a420cc05efdd0cd45e26fad6d6189957e50bdae0dfdeee16932e5545f0fa35 [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] e5f2d7fb6f66f8eee04244387df0b979b9a2c1867b56a7560e036d2a8e67e126 [INFO] running `"docker" "start" "-a" "e5f2d7fb6f66f8eee04244387df0b979b9a2c1867b56a7560e036d2a8e67e126"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/hairpin_loop_params.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | / lazy_static! { [INFO] [stderr] 18 | | pub static ref SPECIAL_HL_DELTA_FES: SpecialHlDeltaFes = { [INFO] [stderr] 19 | | [ [INFO] [stderr] 20 | | (vec![C,A,A,C,G], scale(6.8)), [INFO] [stderr] ... | [INFO] [stderr] 43 | | }; [INFO] [stderr] 44 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::bulge_loop_params::*` [INFO] [stderr] --> src/main.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use rna_ss_params::bulge_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `rna_ss_params::internal_loop_params::*` [INFO] [stderr] --> src/main.rs:7:5 [INFO] [stderr] | [INFO] [stderr] 7 | use rna_ss_params::internal_loop_params::*; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused variable: `EXP_INIT_HL_DELTA_FES` [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_EXP_INIT_HL_DELTA_FES` [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/main.rs:16:7 [INFO] [stderr] | [INFO] [stderr] 16 | let mut output_file_path = Path::new("./src/compiled_free_energy_params.rs"); [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 `INIT_BL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:24:7 [INFO] [stderr] | [INFO] [stderr] 24 | let INIT_BL_DELTA_FES: Vec = [ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_bl_delta_fes` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_snake_case)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable `THREE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:31:11 [INFO] [stderr] | [INFO] [stderr] 31 | let mut THREE_PRIME_DE_DELTA_FES: DeDeltaFes = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `three_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `FIVE_PRIME_DE_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:49:11 [INFO] [stderr] | [INFO] [stderr] 49 | let mut FIVE_PRIME_DE_DELTA_FES = [[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `five_prime_de_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:67:11 [INFO] [stderr] | [INFO] [stderr] 67 | let mut INIT_HL_DELTA_FES: Vec = vec![0., 0., 0., 5.4, 5.6, 5.7, 5.4, 6.0, 5.5, 6.4].iter().map(|&x| {scale(x)}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `EXP_INIT_HL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:74:7 [INFO] [stderr] | [INFO] [stderr] 74 | let EXP_INIT_HL_DELTA_FES: Vec = INIT_HL_DELTA_FES.iter().map(|&x| {x.exp()}).collect(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `exp_init_hl_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `INIT_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:75:7 [INFO] [stderr] | [INFO] [stderr] 75 | let INIT_IL_DELTA_FES: Vec = vec![ [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `init_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:81:11 [INFO] [stderr] | [INFO] [stderr] 81 | let mut TWO_VS_3_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `OTHER_IL_TM_BONUS_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:86:11 [INFO] [stderr] | [INFO] [stderr] 86 | let mut OTHER_IL_TM_BONUS_DELTA_FES = [[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `other_il_tm_bonus_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_1_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:91:11 [INFO] [stderr] | [INFO] [stderr] 91 | let mut ONE_VS_1_IL_DELTA_FES = [[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_1_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:284:11 [INFO] [stderr] | [INFO] [stderr] 284 | let mut ONE_VS_2_IL_DELTA_FES = [[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_2_IL_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1017:11 [INFO] [stderr] | [INFO] [stderr] 1017 | let mut TWO_VS_2_IL_DELTA_FES = [[[[[[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_2_il_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `STACK_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1638:11 [INFO] [stderr] | [INFO] [stderr] 1638 | let mut STACK_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `stack_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `HL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1656:11 [INFO] [stderr] | [INFO] [stderr] 1656 | let mut HL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `hl_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1693:11 [INFO] [stderr] | [INFO] [stderr] 1693 | let mut IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ONE_VS_MANY_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1730:11 [INFO] [stderr] | [INFO] [stderr] 1730 | let mut ONE_VS_MANY_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `one_vs_many_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `TWO_VS_3_IL_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1767:11 [INFO] [stderr] | [INFO] [stderr] 1767 | let mut TWO_VS_3_IL_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `two_vs_3_il_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: variable `ML_TM_DELTA_FES` should have a snake case name [INFO] [stderr] --> src/main.rs:1804:11 [INFO] [stderr] | [INFO] [stderr] 1804 | let mut ML_TM_DELTA_FES = [[[[NEG_INF; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; NUM_OF_BASES]; [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `ml_tm_delta_fes` [INFO] [stderr] [INFO] [stderr] warning: 21 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.12s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/rna_ss_params-699206b287c62366 [INFO] [stderr] Running /opt/rustwide/target/debug/deps/rna_ss_params-04acf0ed2f76165b [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Doc-tests rna_ss_params [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "e5f2d7fb6f66f8eee04244387df0b979b9a2c1867b56a7560e036d2a8e67e126"` [INFO] running `"docker" "rm" "-f" "e5f2d7fb6f66f8eee04244387df0b979b9a2c1867b56a7560e036d2a8e67e126"` [INFO] [stdout] e5f2d7fb6f66f8eee04244387df0b979b9a2c1867b56a7560e036d2a8e67e126