1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 22:30:03 -04:00

Release 0.20.0 - AccessKit, prettier text, overlapping widgets

This commit is contained in:
Emil Ernerfeldt
2022-12-08 15:11:54 +01:00
parent 124ef8ddf8
commit 7d91e90481
22 changed files with 77 additions and 47 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_demo_app"
version = "0.19.0"
version = "0.20.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
@@ -30,11 +30,11 @@ wgpu = ["eframe/wgpu", "bytemuck"]
[dependencies]
chrono = { version = "0.4", features = ["js-sys", "wasmbind"] }
eframe = { version = "0.19.0", path = "../eframe", default-features = false }
egui = { version = "0.19.0", path = "../egui", features = [
eframe = { version = "0.20.0", path = "../eframe", default-features = false }
egui = { version = "0.20.0", path = "../egui", features = [
"extra_debug_asserts",
] }
egui_demo_lib = { version = "0.19.0", path = "../egui_demo_lib", features = [
egui_demo_lib = { version = "0.20.0", path = "../egui_demo_lib", features = [
"chrono",
] }
tracing = "0.1"
@@ -42,7 +42,7 @@ tracing = "0.1"
# Optional dependencies:
bytemuck = { version = "1.7.1", optional = true }
egui_extras = { version = "0.19.0", optional = true, path = "../egui_extras" }
egui_extras = { version = "0.20.0", optional = true, path = "../egui_extras" }
# feature "http":
ehttp = { version = "0.2.0", optional = true }