From 2cc56b357b1cb4e7ed38cf45647628d3e73f8c2b Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Tue, 12 Oct 2021 20:36:21 +0200 Subject: [PATCH] Workaround MSRV bump in ahash CI pipelines for Rust 1.48 now failing, see: https://github.com/tkaitchuck/aHash/issues/99 --- gdnative-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdnative-core/Cargo.toml b/gdnative-core/Cargo.toml index 0e34bcb87..fc61633a8 100644 --- a/gdnative-core/Cargo.toml +++ b/gdnative-core/Cargo.toml @@ -19,7 +19,7 @@ type_tag_fallback = [] [dependencies] gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" } gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.3" } -ahash = "0.7.4" +ahash = "=0.7.4" # FIXME use flexible version as soon as https://github.com/tkaitchuck/aHash/issues/99 is fixed approx = "0.5.0" atomic-take = "1.0.0" bitflags = { version = "1.2.1", optional = true }