From 7cc7bf97b30f722966a78758de27ec10c781d4d8 Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 30 Nov 2022 00:14:10 +1030 Subject: [PATCH] Minor hackery to keep CI happy Pin back scoped-tls used indirectly in imgui-examples only Will revert hackery and bump MSRV once v0.9 is released --- imgui-examples/Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index 989ce25..72415eb 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -16,3 +16,11 @@ image = "0.23" imgui = { path = "../imgui", features = ["tables-api"] } imgui-glium-renderer = { path = "../imgui-glium-renderer" } imgui-winit-support = { path = "../imgui-winit-support" } + +# Pin indirect dependency scoped-tls to 1.0.0 +# as 1.0.1 bumped MSRV to 1.59 +# Used only in +# imgui-examples -> glium -> glutin -> wayland-client -> scoped-tls +# so not worth bumping MSRV for this basically to keep CI happy +# FIXME: Remove this for imgui-rs v0.10 and bump MSRV +scoped-tls = "=1.0.0"