From 327c598472ea89b32c7c0f92815f36d012dd2d8e Mon Sep 17 00:00:00 2001 From: davidkramer Date: Thu, 23 Jun 2022 21:33:41 -0400 Subject: [PATCH] Bump all dependencies. Bump minior version. 1.4.0 --- Cargo.toml | 12 ++++++------ examples/visual.rs | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 40a19d8..ee901ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coord_transforms" -version = "1.3.1" +version = "1.4.0" authors = ["David Kramer "] description = "A Rust crate use for performing coordinate transformations." repository = "https://github.com/DaveKram/coord_transforms" @@ -10,10 +10,10 @@ categories = ["algorithms", "embedded", "science", "parsing"] license = "MIT" [dependencies] -nalgebra = "0.21.1" -float-cmp = "0.5.2" +nalgebra = "0.31.0" +float-cmp = "0.9.0" [dev-dependencies] -chrono = "0.4.9" -rayon = "1.2.0" -minifb = "0.13.0" +chrono = "0.4.19" +rayon = "1.5.3" +minifb = "0.23.0" diff --git a/examples/visual.rs b/examples/visual.rs index 95a6d2d..85b5616 100644 --- a/examples/visual.rs +++ b/examples/visual.rs @@ -105,7 +105,7 @@ fn main() { } } - window.update_with_buffer(&buffer).unwrap(); + window.update_with_buffer(&buffer, WIDTH, HEIGHT).unwrap(); //Wrap radians if line_angle_rads >= 2.0 * 3.14 {