diff --git a/Cargo.lock b/Cargo.lock index a585c0c55d0..ce252b18ad3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1206,7 +1206,7 @@ checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" [[package]] name = "ecolor" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "cint", @@ -1217,7 +1217,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "cocoa", @@ -1254,7 +1254,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.23.0" +version = "0.24.0" dependencies = [ "accesskit", "ahash", @@ -1270,7 +1270,7 @@ dependencies = [ [[package]] name = "egui-wgpu" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "document-features", @@ -1286,7 +1286,7 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.23.0" +version = "0.24.0" dependencies = [ "accesskit_winit", "arboard", @@ -1304,7 +1304,7 @@ dependencies = [ [[package]] name = "egui_demo_app" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "chrono", @@ -1328,7 +1328,7 @@ dependencies = [ [[package]] name = "egui_demo_lib" -version = "0.23.0" +version = "0.24.0" dependencies = [ "chrono", "criterion", @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "egui_extras" -version = "0.23.0" +version = "0.24.0" dependencies = [ "chrono", "document-features", @@ -1363,7 +1363,7 @@ dependencies = [ [[package]] name = "egui_glow" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "document-features", @@ -1382,7 +1382,7 @@ dependencies = [ [[package]] name = "egui_plot" -version = "0.23.0" +version = "0.24.0" dependencies = [ "document-features", "egui", @@ -1411,7 +1411,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "emath" -version = "0.23.0" +version = "0.24.0" dependencies = [ "bytemuck", "document-features", @@ -1487,7 +1487,7 @@ dependencies = [ [[package]] name = "epaint" -version = "0.23.0" +version = "0.24.0" dependencies = [ "ab_glyph", "ahash", diff --git a/Cargo.toml b/Cargo.toml index a3601a4286c..45f2f3c30bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ members = [ edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.72" -version = "0.23.0" +version = "0.24.0" [profile.release] diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index 7c73233db93..df4fe36e356 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -98,7 +98,7 @@ x11 = ["egui-winit/x11"] __screenshot = [] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false, features = [ +egui = { version = "0.24.0", path = "../egui", default-features = false, features = [ "bytemuck", "log", ] } @@ -111,7 +111,7 @@ thiserror.workspace = true ## Enable this when generating docs. document-features = { version = "0.2", optional = true } -egui_glow = { version = "0.23.0", path = "../egui_glow", optional = true, default-features = false } +egui_glow = { version = "0.24.0", path = "../egui_glow", optional = true, default-features = false } glow = { version = "0.12", optional = true } ron = { version = "0.8", optional = true, features = ["integer128"] } serde = { version = "1", optional = true, features = ["derive"] } @@ -119,7 +119,7 @@ serde = { version = "1", optional = true, features = ["derive"] } # ------------------------------------------- # native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -egui-winit = { version = "0.23.0", path = "../egui-winit", default-features = false, features = [ +egui-winit = { version = "0.24.0", path = "../egui-winit", default-features = false, features = [ "clipboard", "links", ] } @@ -131,7 +131,7 @@ winit = { version = "0.28.1", default-features = false } # optional native: directories-next = { version = "2", optional = true } -egui-wgpu = { version = "0.23.0", path = "../egui-wgpu", optional = true, features = [ +egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true, features = [ "winit", ] } # if wgpu is used, use it with winit pollster = { version = "0.3", optional = true } # needed for wgpu @@ -205,7 +205,7 @@ web-sys = { version = "0.3.58", features = [ ] } # optional web: -egui-wgpu = { version = "0.23.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit +egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit raw-window-handle = { workspace = true, optional = true } tts = { version = "0.25", optional = true, default-features = false } wgpu = { workspace = true, optional = true } diff --git a/crates/egui-wgpu/Cargo.toml b/crates/egui-wgpu/Cargo.toml index 2762338cedf..4fc8d6f986b 100644 --- a/crates/egui-wgpu/Cargo.toml +++ b/crates/egui-wgpu/Cargo.toml @@ -36,8 +36,8 @@ winit = ["dep:winit"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false } -epaint = { version = "0.23.0", path = "../epaint", default-features = false, features = [ +egui = { version = "0.24.0", path = "../egui", default-features = false } +epaint = { version = "0.24.0", path = "../epaint", default-features = false, features = [ "bytemuck", ] } diff --git a/crates/egui-winit/Cargo.toml b/crates/egui-winit/Cargo.toml index 4a0da23df9b..0e0c134a279 100644 --- a/crates/egui-winit/Cargo.toml +++ b/crates/egui-winit/Cargo.toml @@ -55,7 +55,7 @@ wayland = ["winit/wayland", "bytemuck"] x11 = ["winit/x11", "bytemuck"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false, features = [ +egui = { version = "0.24.0", path = "../egui", default-features = false, features = [ "log", ] } log = { version = "0.4", features = ["std"] } diff --git a/crates/egui/Cargo.toml b/crates/egui/Cargo.toml index fa1c4a0ea91..61e27dd7249 100644 --- a/crates/egui/Cargo.toml +++ b/crates/egui/Cargo.toml @@ -76,7 +76,7 @@ unity = ["epaint/unity"] [dependencies] -epaint = { version = "0.23.0", path = "../epaint", default-features = false } +epaint = { version = "0.24.0", path = "../epaint", default-features = false } ahash = { version = "0.8.6", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead diff --git a/crates/egui_demo_app/Cargo.toml b/crates/egui_demo_app/Cargo.toml index ffb91b97ee1..1dd9ccd59dc 100644 --- a/crates/egui_demo_app/Cargo.toml +++ b/crates/egui_demo_app/Cargo.toml @@ -37,16 +37,16 @@ chrono = { version = "0.4", default-features = false, features = [ "js-sys", "wasmbind", ] } -eframe = { version = "0.23.0", path = "../eframe", default-features = false } -egui = { version = "0.23.0", path = "../egui", features = [ +eframe = { version = "0.24.0", path = "../eframe", default-features = false } +egui = { version = "0.24.0", path = "../egui", features = [ "callstack", "extra_debug_asserts", "log", ] } -egui_demo_lib = { version = "0.23.0", path = "../egui_demo_lib", features = [ +egui_demo_lib = { version = "0.24.0", path = "../egui_demo_lib", features = [ "chrono", ] } -egui_extras = { version = "0.23.0", path = "../egui_extras", features = [ +egui_extras = { version = "0.24.0", path = "../egui_extras", features = [ "image", ] } log = { version = "0.4", features = ["std"] } diff --git a/crates/egui_demo_lib/Cargo.toml b/crates/egui_demo_lib/Cargo.toml index 3e7674453e1..b65eca8dc0c 100644 --- a/crates/egui_demo_lib/Cargo.toml +++ b/crates/egui_demo_lib/Cargo.toml @@ -38,9 +38,9 @@ syntect = ["egui_extras/syntect"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false } -egui_extras = { version = "0.23.0", path = "../egui_extras" } -egui_plot = { version = "0.23.0", path = "../egui_plot" } +egui = { version = "0.24.0", path = "../egui", default-features = false } +egui_extras = { version = "0.24.0", path = "../egui_extras" } +egui_plot = { version = "0.24.0", path = "../egui_plot" } log = { version = "0.4", features = ["std"] } unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies diff --git a/crates/egui_extras/Cargo.toml b/crates/egui_extras/Cargo.toml index 0ed187879bc..26f1901341d 100644 --- a/crates/egui_extras/Cargo.toml +++ b/crates/egui_extras/Cargo.toml @@ -60,7 +60,7 @@ syntect = ["dep:syntect"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false, features = [ +egui = { version = "0.24.0", path = "../egui", default-features = false, features = [ "serde", ] } enum-map = { version = "2", features = ["serde"] } diff --git a/crates/egui_glow/Cargo.toml b/crates/egui_glow/Cargo.toml index e44008a3212..28b4590df2f 100644 --- a/crates/egui_glow/Cargo.toml +++ b/crates/egui_glow/Cargo.toml @@ -44,7 +44,7 @@ winit = ["egui-winit"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false, features = [ +egui = { version = "0.24.0", path = "../egui", default-features = false, features = [ "bytemuck", ] } @@ -59,7 +59,7 @@ document-features = { version = "0.2", optional = true } # Native: [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -egui-winit = { version = "0.23.0", path = "../egui-winit", optional = true, default-features = false } +egui-winit = { version = "0.24.0", path = "../egui-winit", optional = true, default-features = false } puffin = { workspace = true, optional = true } # Web: diff --git a/crates/egui_plot/Cargo.toml b/crates/egui_plot/Cargo.toml index 86402cb87a0..ee199c84aa3 100644 --- a/crates/egui_plot/Cargo.toml +++ b/crates/egui_plot/Cargo.toml @@ -28,7 +28,7 @@ serde = ["dep:serde", "egui/serde"] [dependencies] -egui = { version = "0.23.0", path = "../egui", default-features = false } +egui = { version = "0.24.0", path = "../egui", default-features = false } #! ### Optional dependencies diff --git a/crates/epaint/Cargo.toml b/crates/epaint/Cargo.toml index 63268d34f52..12c11d97c01 100644 --- a/crates/epaint/Cargo.toml +++ b/crates/epaint/Cargo.toml @@ -70,8 +70,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"] unity = [] [dependencies] -emath = { version = "0.23.0", path = "../emath" } -ecolor = { version = "0.23.0", path = "../ecolor" } +emath = { version = "0.24.0", path = "../emath" } +ecolor = { version = "0.24.0", path = "../ecolor" } ab_glyph = "0.2.11" ahash = { version = "0.8.1", default-features = false, features = [