[INFO] updating cached repository https://github.com/infynyxx/rust_algorithms
[INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"`
[INFO] running `"git" "rev-parse" "HEAD"`
[INFO] [stdout] 158fae35cb89dafcdf47dc1c7d44b793aa547add
[INFO] checking infynyxx/rust_algorithms against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Finfynyxx%2Frust_algorithms" "/workspace/builds/worker-1/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/infynyxx/rust_algorithms on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/infynyxx/rust_algorithms
[INFO] finished tweaking git repo https://github.com/infynyxx/rust_algorithms
[INFO] tweaked toml for git repo https://github.com/infynyxx/rust_algorithms written to /workspace/builds/worker-1/source/Cargo.toml
[INFO] crate git repo https://github.com/infynyxx/rust_algorithms already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 6d5103aa22823d57dafcd6bd3df0fda96c26e95c504f848a939ce9ee449bbdaa
[INFO] running `"docker" "start" "-a" "6d5103aa22823d57dafcd6bd3df0fda96c26e95c504f848a939ce9ee449bbdaa"`
[INFO] [stderr]     Checking rust_algorithms v0.0.1 (/opt/rustwide/workdir)
[INFO] [stderr] error: invalid suffix `i` for integer literal
[INFO] [stderr]   --> src/utils.rs:12:34
[INFO] [stderr]    |
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                                  ^^^^ invalid suffix `i`
[INFO] [stderr]    |
[INFO] [stderr]    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
[INFO] [stderr] 
[INFO] [stderr] error: invalid suffix `i` for integer literal
[INFO] [stderr]   --> src/utils.rs:12:34
[INFO] [stderr]    |
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                                  ^^^^ invalid suffix `i`
[INFO] [stderr]    |
[INFO] [stderr]    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `std::rand`
[INFO] [stderr]  --> src/utils.rs:3:5
[INFO] [stderr]   |
[INFO] [stderr] 3 | use std::rand;
[INFO] [stderr]   |     ^^^^^^^^^ no `rand` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:15
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |               ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:23
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:31
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |                               ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/sort.rs:2:27
[INFO] [stderr]   |
[INFO] [stderr] 1 | pub trait Sorting {
[INFO] [stderr]   |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 2 |     fn sort(&self) -> Vec<int>;
[INFO] [stderr]   |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/selection_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct SelectionSort {
[INFO] [stderr]   |                         - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/selection_sort.rs:9:23
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new (size: int) -> SelectionSort {
[INFO] [stderr]   |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/selection_sort.rs:17:27
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl Sorting for SelectionSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 17 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/selection_sort.rs:21:26
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl Sorting for SelectionSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 21 |         let mut arr: Vec<int> = self.input_array.clone();
[INFO] [stderr]    |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/quick_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct QuickSort {
[INFO] [stderr]   |                     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/quick_sort.rs:9:22
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new(size: int) -> QuickSort {
[INFO] [stderr]   |                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:10:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 9  |     pub fn new(size: int) -> QuickSort {
[INFO] [stderr] 10 |         let rand_array: Vec<int> = rand_array(size);
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:34
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                  ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:46
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:59
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                                           ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:68
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                                                    ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:17:26
[INFO] [stderr]    |
[INFO] [stderr] 17 |         let pivot_index: uint = left + (right -  left) / 2;
[INFO] [stderr]    |                          ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:18:26
[INFO] [stderr]    |
[INFO] [stderr] 18 |         let pivot_value: int = *array.get_mut(pivot_index);
[INFO] [stderr]    |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:20:30
[INFO] [stderr]    |
[INFO] [stderr] 20 |         let mut store_index: uint = left;
[INFO] [stderr]    |                              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:48
[INFO] [stderr]    |
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                                                ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:61
[INFO] [stderr]    |
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                                                             ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:35
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                   ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:47
[INFO] [stderr]    |
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:60
[INFO] [stderr]    |
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                                            ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:50:27
[INFO] [stderr]    |
[INFO] [stderr] 49 | impl Sorting for QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 50 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/merge_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct MergeSort {
[INFO] [stderr]   |                     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/merge_sort.rs:9:22
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new(size: int) -> MergeSort {
[INFO] [stderr]   |                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:10:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 9  |     pub fn new(size: int) -> MergeSort {
[INFO] [stderr] 10 |         let rand_array: Vec<int> = rand_array(size);
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:24
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                        ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:41
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:54
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:17:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 17 |         let mut result: Vec<int> = Vec::new();
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:40:30
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn merge_sort(array: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                              ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:40:43
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn merge_sort(array: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:42:21
[INFO] [stderr]    |
[INFO] [stderr] 42 |         let length :uint = arr.len();
[INFO] [stderr]    |                     ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:46:25
[INFO] [stderr]    |
[INFO] [stderr] 46 |             let middle: uint = length / 2;
[INFO] [stderr]    |                         ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:47:36
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 47 |             let mut sort_left: Vec<int> = Vec::new();
[INFO] [stderr]    |                                    ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `range` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:48:22
[INFO] [stderr]    |
[INFO] [stderr] 48 |             for i in range(0, middle) {
[INFO] [stderr]    |                      ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:51:37
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 51 |             let mut sort_right: Vec<int> = Vec::new();
[INFO] [stderr]    |                                     ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `range` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:52:22
[INFO] [stderr]    |
[INFO] [stderr] 52 |             for i in range(middle, length) {
[INFO] [stderr]    |                      ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:61:27
[INFO] [stderr]    |
[INFO] [stderr] 60 | impl Sorting for MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 61 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:1:19
[INFO] [stderr]   |
[INFO] [stderr] 1 | static NOT_FOUND: int = -1;
[INFO] [stderr]   |                   ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:25
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |             -           ^^^ not found in this scope
[INFO] [stderr]   |             |
[INFO] [stderr]   |             help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:37
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                     ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:47
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:59
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                                           ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:68
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                                                    ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:7:14
[INFO] [stderr]   |
[INFO] [stderr] 7 |     let mid: uint = (high + low) / 2;
[INFO] [stderr]   |              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:14:16
[INFO] [stderr]    |
[INFO] [stderr] 14 |         mid as int
[INFO] [stderr]    |                ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:26
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |              -           ^^^ not found in this scope
[INFO] [stderr]    |              |
[INFO] [stderr]    |              help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:38
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |                                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:46
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |                                              ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/utils.rs:5:25
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/utils.rs:5:37
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                  -                  ^^^ not found in this scope
[INFO] [stderr]   |                  |
[INFO] [stderr]   |                  help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/utils.rs:6:31
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                  - help: you might be missing a type parameter: `<uint>`
[INFO] [stderr] 6 |     let u_size_option: Option<uint> = size.to_uint();
[INFO] [stderr]   |                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:11:23
[INFO] [stderr]    |
[INFO] [stderr] 5  | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]    |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 11 |     let rand_arr: Vec<int> = Vec::from_fn(u_size, | idx | {
[INFO] [stderr]    |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:12:25
[INFO] [stderr]    |
[INFO] [stderr] 5  | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]    |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:12:49
[INFO] [stderr]    |
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                                                 ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `std::rand`
[INFO] [stderr]  --> src/utils.rs:3:5
[INFO] [stderr]   |
[INFO] [stderr] 3 | use std::rand;
[INFO] [stderr]   |     ^^^^^^^^^ no `rand` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_fn` found for struct `std::vec::Vec<_>` in the current scope
[INFO] [stderr]   --> src/utils.rs:11:35
[INFO] [stderr]    |
[INFO] [stderr] 11 |     let rand_arr: Vec<int> = Vec::from_fn(u_size, | idx | {
[INFO] [stderr]    |                                   ^^^^^^^ function or associated item not found in `std::vec::Vec<_>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 61 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0412`.
[INFO] [stderr] error: could not compile `rust_algorithms`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:15
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |               ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:23
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/algorithms/number.rs:3:31
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub fn gcd(x: int, y: int) -> int {
[INFO] [stderr]   |                               ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/sort.rs:2:27
[INFO] [stderr]   |
[INFO] [stderr] 1 | pub trait Sorting {
[INFO] [stderr]   |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 2 |     fn sort(&self) -> Vec<int>;
[INFO] [stderr]   |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/selection_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct SelectionSort {
[INFO] [stderr]   |                         - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/selection_sort.rs:9:23
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new (size: int) -> SelectionSort {
[INFO] [stderr]   |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/selection_sort.rs:17:27
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl Sorting for SelectionSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 17 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/selection_sort.rs:21:26
[INFO] [stderr]    |
[INFO] [stderr] 16 | impl Sorting for SelectionSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 21 |         let mut arr: Vec<int> = self.input_array.clone();
[INFO] [stderr]    |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/quick_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct QuickSort {
[INFO] [stderr]   |                     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/quick_sort.rs:9:22
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new(size: int) -> QuickSort {
[INFO] [stderr]   |                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:10:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 9  |     pub fn new(size: int) -> QuickSort {
[INFO] [stderr] 10 |         let rand_array: Vec<int> = rand_array(size);
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:34
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                  ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:46
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:59
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                                           ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:16:68
[INFO] [stderr]    |
[INFO] [stderr] 16 |     fn partition(array: &mut Vec<int>, left: uint, right: uint) -> uint {
[INFO] [stderr]    |                                                                    ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:17:26
[INFO] [stderr]    |
[INFO] [stderr] 17 |         let pivot_index: uint = left + (right -  left) / 2;
[INFO] [stderr]    |                          ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:18:26
[INFO] [stderr]    |
[INFO] [stderr] 18 |         let pivot_value: int = *array.get_mut(pivot_index);
[INFO] [stderr]    |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:20:30
[INFO] [stderr]    |
[INFO] [stderr] 20 |         let mut store_index: uint = left;
[INFO] [stderr]    |                              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:48
[INFO] [stderr]    |
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                                                ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:33:61
[INFO] [stderr]    |
[INFO] [stderr] 33 |     fn swap(array: &mut Vec<int>, pivot_index: uint, right: uint) {
[INFO] [stderr]    |                                                             ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:35
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                   ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:47
[INFO] [stderr]    |
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:40:60
[INFO] [stderr]    |
[INFO] [stderr] 40 |     fn quick_sort(array: &mut Vec<int>, left: uint, right: uint) {
[INFO] [stderr]    |                                                            ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/quick_sort.rs:50:27
[INFO] [stderr]    |
[INFO] [stderr] 49 | impl Sorting for QuickSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 50 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/merge_sort.rs:5:26
[INFO] [stderr]   |
[INFO] [stderr] 4 | pub struct MergeSort {
[INFO] [stderr]   |                     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 5 |     pub input_array: Vec<int>
[INFO] [stderr]   |                          ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/sorting/merge_sort.rs:9:22
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn new(size: int) -> MergeSort {
[INFO] [stderr]   |                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:10:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 9  |     pub fn new(size: int) -> MergeSort {
[INFO] [stderr] 10 |         let rand_array: Vec<int> = rand_array(size);
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:24
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                        ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:41
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:16:54
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 16 |     fn merge(left: Vec<int>, right: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:17:29
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 17 |         let mut result: Vec<int> = Vec::new();
[INFO] [stderr]    |                             ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:40:30
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn merge_sort(array: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                              ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:40:43
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 40 |     fn merge_sort(array: Vec<int>) -> Vec<int> {
[INFO] [stderr]    |                                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:42:21
[INFO] [stderr]    |
[INFO] [stderr] 42 |         let length :uint = arr.len();
[INFO] [stderr]    |                     ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:46:25
[INFO] [stderr]    |
[INFO] [stderr] 46 |             let middle: uint = length / 2;
[INFO] [stderr]    |                         ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:47:36
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 47 |             let mut sort_left: Vec<int> = Vec::new();
[INFO] [stderr]    |                                    ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `range` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:48:22
[INFO] [stderr]    |
[INFO] [stderr] 48 |             for i in range(0, middle) {
[INFO] [stderr]    |                      ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:51:37
[INFO] [stderr]    |
[INFO] [stderr] 8  | impl MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 51 |             let mut sort_right: Vec<int> = Vec::new();
[INFO] [stderr]    |                                     ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `range` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:52:22
[INFO] [stderr]    |
[INFO] [stderr] 52 |             for i in range(middle, length) {
[INFO] [stderr]    |                      ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/sorting/merge_sort.rs:61:27
[INFO] [stderr]    |
[INFO] [stderr] 60 | impl Sorting for MergeSort {
[INFO] [stderr]    |     - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 61 |     fn sort(&self) -> Vec<int> {
[INFO] [stderr]    |                           ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:1:19
[INFO] [stderr]   |
[INFO] [stderr] 1 | static NOT_FOUND: int = -1;
[INFO] [stderr]   |                   ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:25
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |             -           ^^^ not found in this scope
[INFO] [stderr]   |             |
[INFO] [stderr]   |             help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:37
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                     ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:47
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:59
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                                           ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/binary_search.rs:3:68
[INFO] [stderr]   |
[INFO] [stderr] 3 | fn find_rank(items: Vec<int>, item: int, low: uint, high: uint) -> int {
[INFO] [stderr]   |                                                                    ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/binary_search.rs:7:14
[INFO] [stderr]   |
[INFO] [stderr] 7 |     let mid: uint = (high + low) / 2;
[INFO] [stderr]   |              ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:14:16
[INFO] [stderr]    |
[INFO] [stderr] 14 |         mid as int
[INFO] [stderr]    |                ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:26
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |              -           ^^^ not found in this scope
[INFO] [stderr]    |              |
[INFO] [stderr]    |              help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:38
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |                                      ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/binary_search.rs:18:46
[INFO] [stderr]    |
[INFO] [stderr] 18 | pub fn search(items: Vec<int>, item: int) -> int {
[INFO] [stderr]    |                                              ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/utils.rs:5:25
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]  --> src/utils.rs:5:37
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                  -                  ^^^ not found in this scope
[INFO] [stderr]   |                  |
[INFO] [stderr]   |                  help: you might be missing a type parameter: `<int>`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]  --> src/utils.rs:6:31
[INFO] [stderr]   |
[INFO] [stderr] 5 | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]   |                  - help: you might be missing a type parameter: `<uint>`
[INFO] [stderr] 6 |     let u_size_option: Option<uint> = size.to_uint();
[INFO] [stderr]   |                               ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:11:23
[INFO] [stderr]    |
[INFO] [stderr] 5  | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]    |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 11 |     let rand_arr: Vec<int> = Vec::from_fn(u_size, | idx | {
[INFO] [stderr]    |                       ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:12:25
[INFO] [stderr]    |
[INFO] [stderr] 5  | pub fn rand_array(size: int) -> Vec<int> {
[INFO] [stderr]    |                  - help: you might be missing a type parameter: `<int>`
[INFO] [stderr] ...
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                         ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `int` in this scope
[INFO] [stderr]   --> src/utils.rs:12:49
[INFO] [stderr]    |
[INFO] [stderr] 12 |         (rand::random::<int>() % 100i) + idx as int
[INFO] [stderr]    |                                                 ^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_fn` found for struct `std::vec::Vec<_>` in the current scope
[INFO] [stderr]   --> src/utils.rs:11:35
[INFO] [stderr]    |
[INFO] [stderr] 11 |     let rand_arr: Vec<int> = Vec::from_fn(u_size, | idx | {
[INFO] [stderr]    |                                   ^^^^^^^ function or associated item not found in `std::vec::Vec<_>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 61 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0412`.
[INFO] [stderr] error: could not compile `rust_algorithms`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "6d5103aa22823d57dafcd6bd3df0fda96c26e95c504f848a939ce9ee449bbdaa"`
[INFO] running `"docker" "rm" "-f" "6d5103aa22823d57dafcd6bd3df0fda96c26e95c504f848a939ce9ee449bbdaa"`
[INFO] [stdout] 6d5103aa22823d57dafcd6bd3df0fda96c26e95c504f848a939ce9ee449bbdaa
