From 7751ef611c0d9a3d90d2ffbfdf3fcd4d6932562d Mon Sep 17 00:00:00 2001 From: David Fisher Date: Thu, 27 Jul 2023 22:25:52 -0400 Subject: [PATCH] approx 0.4.0 -> 0.5.1 because: approx was flagged as outdated in the list of dependencies https://deps.rs/repo/gitlab/veloren/veloren this commit: Updates approx to 0.5.1 Tests appear to pass. Changes between 0.4.0 and 0.5.1: https://github.com/brendanzab/approx/compare/v0.4.0...v0.5.1 --- Cargo.lock | 2 +- common/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 26332a5e3f..34e4124786 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7036,7 +7036,7 @@ dependencies = [ name = "veloren-common" version = "0.10.0" dependencies = [ - "approx 0.4.0", + "approx 0.5.1", "bitflags 2.2.1", "cfg-if 1.0.0", "chrono", diff --git a/common/Cargo.toml b/common/Cargo.toml index 8e424fbce5..87cdeaee88 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -38,7 +38,7 @@ sha2 = "0.10" # Strum strum = { workspace = true } -approx = "0.4.0" +approx = "0.5.1" crossbeam-utils = { workspace = true } crossbeam-channel = { workspace = true } bitflags = { workspace = true, features = ["serde"] }