From fd72000a9a60f3ee647f6a9fd9cbba1eca383f6d Mon Sep 17 00:00:00 2001 From: ajtribick Date: Sun, 28 Aug 2022 23:26:51 +0200 Subject: [PATCH] Disable default features in simple_logger This fix CI building due to implicit rust version bump in examples. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 487a84d5..9cf20795 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ mint = { version = "0.5.6", optional = true } [dev-dependencies] image = { version = "0.24.0", default-features = false, features = ["png"] } -simple_logger = "2.1.0" +simple_logger = { version = "2.1.0", default_features = false } [target.'cfg(target_os = "android")'.dependencies] # Coordinate the next winit release with android-ndk-rs: https://github.com/rust-windowing/winit/issues/1995