1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Release 0.11.0 - Optimization, screen reader & new layout logic

This commit is contained in:
Emil Ernerfeldt
2021-04-05 14:49:06 +02:00
parent c96819e95e
commit d544c3dd8b
14 changed files with 47 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "epaint"
version = "0.10.0"
version = "0.11.0"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Minimal 2D graphics library for GUI work"
edition = "2018"
@@ -22,7 +22,7 @@ include = [
[lib]
[dependencies]
emath = { version = "0.10.0", path = "../emath" }
emath = { version = "0.11.0", path = "../emath" }
ahash = { version = "0.7", features = ["std"], default-features = false }
atomic_refcell = { version = "0.1", optional = true } # Used instead of parking_lot when you are always using epaint in a single thread. About as fast as parking_lot. Panics on multi-threaded use.