[INFO] updating cached repository https://github.com/AnickaBurova/roguelike-dwemthys
[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] f97c584f1efe38a1d5559d32beb292ac809e6d51
[INFO] checking AnickaBurova/roguelike-dwemthys against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FAnickaBurova%2Froguelike-dwemthys" "/workspace/builds/worker-2/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/AnickaBurova/roguelike-dwemthys on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/AnickaBurova/roguelike-dwemthys
[INFO] finished tweaking git repo https://github.com/AnickaBurova/roguelike-dwemthys
[INFO] tweaked toml for git repo https://github.com/AnickaBurova/roguelike-dwemthys written to /workspace/builds/worker-2/source/Cargo.toml
[INFO] crate git repo https://github.com/AnickaBurova/roguelike-dwemthys already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] error: the lock file /workspace/builds/worker-2/source/Cargo.lock needs to be updated but --locked was passed to prevent this
[INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag.
[INFO] the lockfile is outdated, regenerating it
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] 76053eecb3fb17c673581567d40141cc783bfe6eadd011d3e529934726ff5eed
[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" "76053eecb3fb17c673581567d40141cc783bfe6eadd011d3e529934726ff5eed"`
[INFO] [stderr]    Compiling cgmath v0.17.0
[INFO] [stderr]    Compiling tcod-sys v5.0.1
[INFO] [stderr]     Checking serde v1.0.106
[INFO] [stderr]     Checking cgmath v0.8.0
[INFO] [stderr]     Checking tcod v0.15.0
[INFO] [stderr]     Checking collision v0.20.1
[INFO] [stderr]     Checking dwemthys v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0432]: unresolved import `std::cell::BorrowState`
[INFO] [stderr]   --> src/world/mod.rs:25:25
[INFO] [stderr]    |
[INFO] [stderr] 25 | use std::cell::{RefCell,BorrowState};
[INFO] [stderr]    |                         ^^^^^^^^^^^ no `BorrowState` in `cell`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/game/mod.rs:29:31
[INFO] [stderr]    |
[INFO] [stderr] 29 |     rendering_component : Box<RenderingComponent>,
[INFO] [stderr]    |                               ^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn RenderingComponent`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:32:43
[INFO] [stderr]    |
[INFO] [stderr] 32 |     pub components :    Rc<Vec<Rc<RefCell<Component>>>>,
[INFO] [stderr]    |                                           ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:53:53
[INFO] [stderr]    |
[INFO] [stderr] 53 |     pub fn render(&self, rendering_component : &mut RenderingComponent){
[INFO] [stderr]    |                                                     ^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn RenderingComponent`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:57:54
[INFO] [stderr]    |
[INFO] [stderr] 57 |     pub fn add_component( &mut self, cmp: Rc<RefCell<Component>>) {
[INFO] [stderr]    |                                                      ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:35:80
[INFO] [stderr]    |
[INFO] [stderr] 35 |         let rand_mover = Rc::new(RefCell::new(RandomMovement{})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:36:91
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let chase_mover = Rc::new(RefCell::new(ChaseMovement{target: '@'})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                           ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:46:80
[INFO] [stderr]    |
[INFO] [stderr] 46 |         let input_mover = Rc::new(RefCell::new(InputMovement{})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `std::cell::BorrowState`
[INFO] [stderr]   --> src/world/mod.rs:25:25
[INFO] [stderr]    |
[INFO] [stderr] 25 | use std::cell::{RefCell,BorrowState};
[INFO] [stderr]    |                         ^^^^^^^^^^^ no `BorrowState` in `cell`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/game/mod.rs:29:31
[INFO] [stderr]    |
[INFO] [stderr] 29 |     rendering_component : Box<RenderingComponent>,
[INFO] [stderr]    |                               ^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn RenderingComponent`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(bare_trait_objects)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:32:43
[INFO] [stderr]    |
[INFO] [stderr] 32 |     pub components :    Rc<Vec<Rc<RefCell<Component>>>>,
[INFO] [stderr]    |                                           ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:53:53
[INFO] [stderr]    |
[INFO] [stderr] 53 |     pub fn render(&self, rendering_component : &mut RenderingComponent){
[INFO] [stderr]    |                                                     ^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn RenderingComponent`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/actor/mod.rs:57:54
[INFO] [stderr]    |
[INFO] [stderr] 57 |     pub fn add_component( &mut self, cmp: Rc<RefCell<Component>>) {
[INFO] [stderr]    |                                                      ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:35:80
[INFO] [stderr]    |
[INFO] [stderr] 35 |         let rand_mover = Rc::new(RefCell::new(RandomMovement{})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:36:91
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let chase_mover = Rc::new(RefCell::new(ChaseMovement{target: '@'})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                           ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated
[INFO] [stderr]   --> src/world/mod.rs:46:80
[INFO] [stderr]    |
[INFO] [stderr] 46 |         let input_mover = Rc::new(RefCell::new(InputMovement{})) as Rc<RefCell<Component>>;
[INFO] [stderr]    |                                                                                ^^^^^^^^^ help: use `dyn`: `dyn Component`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/game/mod.rs:36:34
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let bounds = Bounds::new(Point::new(0,0), Point::new(80,50));
[INFO] [stderr]    |                                  ^^^^^^^^^^^^^^^ expected struct `cgmath::point::Point2`, found struct `cgmath::Point2`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `cgmath::point::Point2<i32>`
[INFO] [stderr]               found struct `cgmath::Point2<i32>`
[INFO] [stderr]    = note: perhaps two different versions of crate `cgmath` are being used?
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/game/mod.rs:36:34
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let bounds = Bounds::new(Point::new(0,0), Point::new(80,50));
[INFO] [stderr]    |                                  ^^^^^^^^^^^^^^^ expected struct `cgmath::point::Point2`, found struct `cgmath::Point2`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `cgmath::point::Point2<i32>`
[INFO] [stderr]               found struct `cgmath::Point2<i32>`
[INFO] [stderr]    = note: perhaps two different versions of crate `cgmath` are being used?
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/game/mod.rs:36:51
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let bounds = Bounds::new(Point::new(0,0), Point::new(80,50));
[INFO] [stderr]    |                                                   ^^^^^^^^^^^^^^^^^ expected struct `cgmath::point::Point2`, found struct `cgmath::Point2`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `cgmath::point::Point2<i32>`
[INFO] [stderr]               found struct `cgmath::Point2<i32>`
[INFO] [stderr]    = note: perhaps two different versions of crate `cgmath` are being used?
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `borrow_state` found for reference `&std::rc::Rc<std::cell::RefCell<actor::Actor>>` in the current scope
[INFO] [stderr]   --> src/world/mod.rs:56:22
[INFO] [stderr]    |
[INFO] [stderr] 56 |             if actor.borrow_state() != BorrowState::Writing && actor.borrow().display_char == target {
[INFO] [stderr]    |                      ^^^^^^^^^^^^ help: there is an associated function with a similar name: `borrow_mut`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/game/mod.rs:36:51
[INFO] [stderr]    |
[INFO] [stderr] 36 |         let bounds = Bounds::new(Point::new(0,0), Point::new(80,50));
[INFO] [stderr]    |                                                   ^^^^^^^^^^^^^^^^^ expected struct `cgmath::point::Point2`, found struct `cgmath::Point2`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `cgmath::point::Point2<i32>`
[INFO] [stderr]               found struct `cgmath::Point2<i32>`
[INFO] [stderr]    = note: perhaps two different versions of crate `cgmath` are being used?
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:36:31
[INFO] [stderr]    |
[INFO] [stderr] 36 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:41:31
[INFO] [stderr]    |
[INFO] [stderr] 41 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `borrow_state` found for reference `&std::rc::Rc<std::cell::RefCell<actor::Actor>>` in the current scope
[INFO] [stderr]   --> src/world/mod.rs:56:22
[INFO] [stderr]    |
[INFO] [stderr] 56 |             if actor.borrow_state() != BorrowState::Writing && actor.borrow().display_char == target {
[INFO] [stderr]    |                      ^^^^^^^^^^^^ help: there is an associated function with a similar name: `borrow_mut`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:63:31
[INFO] [stderr]    |
[INFO] [stderr] 63 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] warning: unused import: `Aabb`
[INFO] [stderr]   --> src/movement/mod.rs:19:17
[INFO] [stderr]    |
[INFO] [stderr] 19 | use collision::{Aabb};
[INFO] [stderr]    |                 ^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_imports)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 7 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0308, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0308`.
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:36:31
[INFO] [stderr]    |
[INFO] [stderr] 36 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:41:31
[INFO] [stderr]    |
[INFO] [stderr] 41 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `contains` found for struct `collision::Aabb2<i32>` in the current scope
[INFO] [stderr]   --> src/movement/mod.rs:63:31
[INFO] [stderr]    |
[INFO] [stderr] 63 |         if game.window_bounds.contains(new_pos) {
[INFO] [stderr]    |                               ^^^^^^^^ method not found in `collision::Aabb2<i32>`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/collision-0.20.1/src/traits.rs:27:8
[INFO] [stderr]    |
[INFO] [stderr] 27 |     fn contains(&self, _: &RHS) -> bool;
[INFO] [stderr]    |        --------
[INFO] [stderr]    |        |
[INFO] [stderr]    |        the method is available for `std::boxed::Box<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::sync::Arc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |        the method is available for `std::rc::Rc<collision::Aabb2<i32>>` here
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr]    = note: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]            `use collision::Contains;`
[INFO] [stderr] 
[INFO] [stderr] warning: unused import: `Aabb`
[INFO] [stderr]   --> src/movement/mod.rs:19:17
[INFO] [stderr]    |
[INFO] [stderr] 19 | use collision::{Aabb};
[INFO] [stderr]    |                 ^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_imports)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 7 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0308, E0432, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0308`.
[INFO] [stderr] error: could not compile `dwemthys`.
[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: could not compile `dwemthys`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "76053eecb3fb17c673581567d40141cc783bfe6eadd011d3e529934726ff5eed"`
[INFO] running `"docker" "rm" "-f" "76053eecb3fb17c673581567d40141cc783bfe6eadd011d3e529934726ff5eed"`
[INFO] [stdout] 76053eecb3fb17c673581567d40141cc783bfe6eadd011d3e529934726ff5eed
