From 7537955dc773acea6bd72a3bcd4d3f5529e2e53f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 18:27:37 +0000 Subject: [PATCH] Bump nalgebra from 0.18.1 to 0.27.1 in /knot Bumps [nalgebra](https://github.com/dimforge/nalgebra) from 0.18.1 to 0.27.1. - [Release notes](https://github.com/dimforge/nalgebra/releases) - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md) - [Commits](https://github.com/dimforge/nalgebra/compare/v0.18.1...v0.27.1) --- updated-dependencies: - dependency-name: nalgebra dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- knot/Cargo.lock | 111 ++++++++++++++++++++++++++++++++++++++++++------ knot/Cargo.toml | 2 +- 2 files changed, 99 insertions(+), 14 deletions(-) diff --git a/knot/Cargo.lock b/knot/Cargo.lock index b0116a7..69bb558 100644 --- a/knot/Cargo.lock +++ b/knot/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "addr2line" version = "0.14.0" @@ -27,8 +29,8 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2" dependencies = [ - "approx", - "num-complex", + "approx 0.3.2", + "num-complex 0.2.4", "num-traits", ] @@ -70,6 +72,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "approx" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" +dependencies = [ + "num-traits", +] + [[package]] name = "atty" version = "0.2.14" @@ -506,7 +517,7 @@ dependencies = [ "jpeg-decoder", "lzw", "num-iter", - "num-rational", + "num-rational 0.2.4", "num-traits", "png", "scoped_threadpool", @@ -555,7 +566,7 @@ dependencies = [ "glutin", "image", "libc", - "nalgebra", + "nalgebra 0.18.1", "ncollide3d", "num-traits", "rusttype 0.7.9", @@ -570,12 +581,12 @@ name = "knot" version = "0.1.0" dependencies = [ "alga", - "approx", + "approx 0.3.2", "bspline", "clap", "image", "kiss3d", - "nalgebra", + "nalgebra 0.27.1", "rand", "rayon", "serde", @@ -669,6 +680,15 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "matrixmultiply" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" +dependencies = [ + "rawpointer", +] + [[package]] name = "maybe-uninit" version = "2.0.0" @@ -711,16 +731,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aaa9fddbc34c8c35dd2108515587b8ce0cab396f17977b8c738568e4edb521a2" dependencies = [ "alga", - "approx", + "approx 0.3.2", "generic-array", - "matrixmultiply", - "num-complex", - "num-rational", + "matrixmultiply 0.2.3", + "num-complex 0.2.4", + "num-rational 0.2.4", "num-traits", "rand", "typenum", ] +[[package]] +name = "nalgebra" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "462fffe4002f4f2e1f6a9dcf12cc1a6fc0e15989014efc02a941d3e0f5dc2120" +dependencies = [ + "approx 0.5.1", + "matrixmultiply 0.3.2", + "nalgebra-macros", + "num-complex 0.4.1", + "num-rational 0.4.0", + "num-traits", + "simba", + "typenum", +] + +[[package]] +name = "nalgebra-macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.50", +] + [[package]] name = "ncollide3d" version = "0.19.2" @@ -728,11 +775,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "821b11bd4a9153e8719ee3b9eb1fc5e52c61e576e048f4bf72c045d1753ccef5" dependencies = [ "alga", - "approx", + "approx 0.3.2", "bitflags", "downcast-rs", "either", - "nalgebra", + "nalgebra 0.18.1", "num-traits", "petgraph", "rand", @@ -763,6 +810,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-complex" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fbc387afefefd5e9e39493299f3069e14a140dd34dc19b4c1c1a8fddb6a790" +dependencies = [ + "num-traits", +] + [[package]] name = "num-derive" version = "0.2.5" @@ -806,6 +862,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-rational" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" +dependencies = [ + "autocfg 1.0.1", + "num-integer", + "num-traits", +] + [[package]] name = "num-traits" version = "0.2.14" @@ -897,6 +964,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "paste" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc" + [[package]] name = "percent-encoding" version = "1.0.1" @@ -1149,7 +1222,7 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f61411055101f7b60ecf1041d87fb74205fb20b0c7a723f07ef39174cf6b4c0" dependencies = [ - "approx", + "approx 0.3.2", "crossbeam-deque 0.7.3", "crossbeam-utils 0.7.2", "linked-hash-map", @@ -1251,6 +1324,18 @@ dependencies = [ "libc", ] +[[package]] +name = "simba" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e82063457853d00243beda9952e910b82593e4b07ae9f721b9278a99a0d3d5c" +dependencies = [ + "approx 0.5.1", + "num-complex 0.4.1", + "num-traits", + "paste", +] + [[package]] name = "slab" version = "0.4.2" diff --git a/knot/Cargo.toml b/knot/Cargo.toml index 81c752c..461c318 100644 --- a/knot/Cargo.toml +++ b/knot/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["William Brandon", "Jonathan Liu"] [dependencies] -nalgebra = "0.18.0" +nalgebra = "0.27.1" alga = "0.9.0" approx = "0.3.2" rand = "0.6.5"