From d9472035d7bbcd854ceeec3dc7a5b2e49ac539a7 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 7 Feb 2021 15:46:35 +0100 Subject: [PATCH] Update ahash 0.6.3 -> 0.7.0 --- Cargo.lock | 4 ++-- epaint/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 26c8d8aa..1d81d74b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,9 +29,9 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "ahash" -version = "0.6.3" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "796540673305a66d127804eef19ad696f1f204b8c1025aaca4958c17eab32877" +checksum = "efa60d2eadd8b12a996add391db32bd1153eac697ba4869660c0016353611426" dependencies = [ "getrandom", "once_cell", diff --git a/epaint/Cargo.toml b/epaint/Cargo.toml index 92857b15..77a7b591 100644 --- a/epaint/Cargo.toml +++ b/epaint/Cargo.toml @@ -21,7 +21,7 @@ include = [ [dependencies] emath = { version = "0.8.0", path = "../emath" } -ahash = { version = "0.6", features = ["std"], default-features = false } +ahash = { version = "0.7", features = ["std"], default-features = false } atomic_refcell = { version = "0.1", optional = true } # Used instead of parking_lot when you are always using epaint in a single thread. About as fast as parking_lot. Panics on multi-threaded use. parking_lot = { version = "0.11", optional = true } # Using parking_lot over std::sync::Mutex gives 50% speedups in some real-world scenarios. rusttype = "0.9"