Skip to content

Commit

Permalink
Update all dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Feb 3, 2019
1 parent d1c964f commit c833a02
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Expand Up @@ -29,9 +29,9 @@ path = "src/lib.rs"
libc = "0.2"
bitflags = "1.0"
num-traits = "0.2"
nalgebra = "0.16"
ncollide3d = "0.17"
image = "0.20"
nalgebra = "0.17"
ncollide3d = "0.18"
image = "0.21"
serde = "1.0"
serde_derive = "1.0"
rusttype = { version = "0.7", features = [ "gpu_cache" ] }
Expand All @@ -55,5 +55,5 @@ stdweb = "0.4"
stdweb-derive = "0.5"

[dev-dependencies]
rand = "0.5"
ncollide2d = "0.17"
rand = "0.6"
ncollide2d = "0.18"
1 change: 1 addition & 0 deletions src/camera/arc_ball.rs
Expand Up @@ -230,6 +230,7 @@ impl ArcBall {
self.inverse_proj_view = self.proj_view.try_inverse().unwrap();
}

/// Sets the up vector of this camera.
#[inline]
pub fn set_up_axis(&mut self, up_axis: Vector3<f32>) {
self.up_axis = up_axis;
Expand Down
1 change: 1 addition & 0 deletions src/camera/first_person.rs
Expand Up @@ -328,6 +328,7 @@ impl FirstPerson {
self.update_projviews();
}

/// Sets the Up vector of this camera.
#[inline]
pub fn set_up_axis(&mut self, up_axis: Vector3<f32>) {
self.up_axis = up_axis;
Expand Down

0 comments on commit c833a02

Please sign in to comment.