From f66d358fcaf0b7e80b425a784ea948877296f188 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 15:12:29 +0000 Subject: [PATCH] chore(gui): update eframe requirement from 0.21.3 to 0.22.0 in /gui Updates the requirements on [eframe](https://github.com/emilk/egui) to permit the latest version. - [Release notes](https://github.com/emilk/egui/releases) - [Changelog](https://github.com/emilk/egui/blob/master/CHANGELOG.md) - [Commits](https://github.com/emilk/egui/compare/0.21.3...0.22.0) --- updated-dependencies: - dependency-name: eframe dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- gui/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/Cargo.toml b/gui/Cargo.toml index 1034e93..9cff2f6 100644 --- a/gui/Cargo.toml +++ b/gui/Cargo.toml @@ -11,7 +11,7 @@ experimental = [] [dependencies] calculator = { path = "../calculator" } -eframe = { version = "0.21.3", features = ["persistence"] } +eframe = { version = "0.22.0", features = ["persistence"] } serde = { version = "1.0.144", features = ["derive"] } egui_commonmark = "0.7.0"