From 58b898869178b392a5b71c1c987468f06d50b4aa Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 19 Jan 2021 03:07:04 +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-preview[bot] --- Cargo.lock | 29 ++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f279f8b9..a6679578 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 = "arrayref" version = "0.3.6" @@ -267,12 +276,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" @@ -382,9 +401,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.13", @@ -2428,7 +2447,7 @@ dependencies = [ name = "steven_blocks" version = "0.0.1" dependencies = [ - "cgmath", + "cgmath 0.17.0", "collision", "lazy_static", "steven_shared", @@ -2469,7 +2488,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 0ec33cfc..03750cb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ rand = "0.8.2" rand_pcg = "0.3.0" base64 = "0.13.0" log = { version = "0.4.13", 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"