From a0ee803420e7b74a4faebe0f7575a68b2c41e5a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 May 2021 15:15:49 +0000 Subject: [PATCH] build(deps): bump cgmath from 0.17.0 to 0.18.0 Bumps [cgmath](https://github.com/rustgd/cgmath) from 0.17.0 to 0.18.0. - [Release notes](https://github.com/rustgd/cgmath/releases) - [Changelog](https://github.com/rustgd/cgmath/blob/master/CHANGELOG.md) - [Commits](https://github.com/rustgd/cgmath/compare/v0.17.0...v0.18.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 29 ++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 853f091..c9f7581 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,6 +87,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "approx" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278" +dependencies = [ + "num-traits", +] + [[package]] name = "atty" version = "0.2.14" @@ -238,12 +247,22 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "283944cdecc44bf0b8dd010ec9af888d3b4f142844fdbe026c20ef68148d6fe7" dependencies = [ - "approx", + "approx 0.3.2", "num-traits", "rand 0.6.5", "serde", ] +[[package]] +name = "cgmath" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a98d30140e3296250832bbaaff83b27dcd6fa3cc70fb6f1f3e5c9c0023b5317" +dependencies = [ + "approx 0.4.0", + "num-traits", +] + [[package]] name = "chrono" version = "0.4.19" @@ -353,9 +372,9 @@ version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6107f6be76c2269a9c8d89e707a66122bd3086f987fa508133a5f774e8ac4ced" dependencies = [ - "approx", + "approx 0.3.2", "bit-set", - "cgmath", + "cgmath 0.17.0", "num 0.2.1", "rand 0.6.5", "smallvec 0.6.14", @@ -2324,7 +2343,7 @@ dependencies = [ name = "steven_blocks" version = "0.0.1" dependencies = [ - "cgmath", + "cgmath 0.17.0", "collision", "lazy_static", "steven_shared", @@ -2365,7 +2384,7 @@ dependencies = [ "base64", "byteorder", "cfg-if 1.0.0", - "cgmath", + "cgmath 0.18.0", "clipboard", "collision", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index 0f42246..883f3f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ rand = "0.8.3" rand_pcg = "0.3.0" base64 = "0.13.0" log = { version = "0.4.14", features = ["std"] } -cgmath = "0.17.0" +cgmath = "0.18.0" lazy_static = "1.4.0" collision = "0.20.1" rsa_public_encrypt_pkcs1 = "0.3.0"