From 5ee32ae555fee730cf3560f7a834688cc2e544a5 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 16 Dec 2024 21:17:38 +0100 Subject: [PATCH] bump egui to `0.30.0` --- Cargo.toml | 62 +++++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1861728..c563b05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,31 +1,31 @@ -[package] -name = "egui-notify" -version = "0.17.0" -edition = "2021" -license = "MIT" -repository = "https://github.com/ItsEthra/egui-notify" -description = "Simple notifications library for egui" -authors = ["ItsEthra"] -readme = "README.md" - -[lib] -path = "src/lib.rs" - -[dependencies] -egui = { version = "0.29", default-features = false } - -[dev-dependencies] -eframe = { version = "0.29", default-features = false, features = [ - "default_fonts", - "glow", -] } -egui-phosphor = { git = "https://github.com/ItsEthra/egui-phosphor", branch = "main" } - -[lints.rust] -unsafe_code = "forbid" - -[lints.clippy] -all = { level = "deny", priority = 0 } -unwrap_used = { level = "deny", priority = 1 } -expect_used = { level = "deny", priority = 1 } -enum_glob_use = { level = "deny", priority = 2 } +[package] +name = "egui-notify" +version = "0.17.0" +edition = "2021" +license = "MIT" +repository = "https://github.com/ItsEthra/egui-notify" +description = "Simple notifications library for egui" +authors = ["ItsEthra"] +readme = "README.md" + +[lib] +path = "src/lib.rs" + +[dependencies] +egui = { version = "0.30", default-features = false } + +[dev-dependencies] +eframe = { version = "0.30", default-features = false, features = [ + "default_fonts", + "glow", +] } +egui-phosphor = { git = "https://github.com/ItsEthra/egui-phosphor", branch = "main" } + +[lints.rust] +unsafe_code = "forbid" + +[lints.clippy] +all = { level = "deny", priority = 0 } +unwrap_used = { level = "deny", priority = 1 } +expect_used = { level = "deny", priority = 1 } +enum_glob_use = { level = "deny", priority = 2 }