From 9c498d557f94c0664ce708ca8406a7f59a8c1f48 Mon Sep 17 00:00:00 2001 From: Lucas Meurer Date: Wed, 5 Feb 2025 09:44:08 +0100 Subject: [PATCH] Make egui_kittest a workspace dependency and update it to 0.31 --- Cargo.lock | 7 ++++--- Cargo.toml | 1 + demo/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3da88af..50feb1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -747,7 +747,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -1103,8 +1103,9 @@ dependencies = [ [[package]] name = "egui_kittest" -version = "0.30.0" -source = "git+https://github.com/emilk/egui?branch=master#99369666eea587f98dc458347e0b9daa6ac99c99" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4a9133e9f6601f7c74edc78dd46b24034bbcf1b99f1bf268ef7b65cf09560ab" dependencies = [ "dify", "eframe", diff --git a/Cargo.toml b/Cargo.toml index fe36b7b..4a83064 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,6 +28,7 @@ ahash = { version = "0.8.11", default-features = false, features = [ document-features = "0.2.10" eframe = { version = "0.31.0", default-features = false } egui = { version = "0.31.0", default-features = false } +egui_kittest = { version = "0.31.0", default-features = false } emath = { version = "0.31.0", default-features = false } env_logger = { version = "0.11.6", default-features = false, features = [ "auto-color", diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 99557e3..75d105c 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -34,4 +34,4 @@ wasm-bindgen-futures.workspace = true web-sys.workspace = true # to access the DOM (to hide the loading text) [dev-dependencies] -egui_kittest = { version = "0.30.0", features = ["snapshot", "wgpu", "eframe"] } \ No newline at end of file +egui_kittest = { workspace = true, features = ["snapshot", "wgpu", "eframe"] }