diff --git a/Cargo.lock b/Cargo.lock index a3f57373..aa075633 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -357,7 +357,7 @@ dependencies = [ name = "demo_glium" version = "0.1.0" dependencies = [ - "egui 0.1.3", + "egui 0.1.4", "egui_glium 0.1.3", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -366,7 +366,7 @@ dependencies = [ name = "demo_web" version = "0.1.0" dependencies = [ - "egui 0.1.3", + "egui 0.1.4", "egui_web 0.1.3", "js-sys 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", @@ -404,7 +404,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "egui" -version = "0.1.3" +version = "0.1.4" dependencies = [ "ahash 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "criterion 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -420,7 +420,7 @@ version = "0.1.3" dependencies = [ "chrono 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", "clipboard 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "egui 0.1.3", + "egui 0.1.4", "glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)", @@ -431,7 +431,7 @@ dependencies = [ name = "egui_web" version = "0.1.3" dependencies = [ - "egui 0.1.3", + "egui 0.1.4", "js-sys 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", @@ -449,7 +449,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "example_glium" version = "0.1.0" dependencies = [ - "egui 0.1.3", + "egui 0.1.4", "egui_glium 0.1.3", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/egui/Cargo.toml b/egui/Cargo.toml index 7d5ccd5c..a120aef0 100644 --- a/egui/Cargo.toml +++ b/egui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui" -version = "0.1.3" +version = "0.1.4" authors = ["Emil Ernerfeldt "] description = "Simple, portable immediate mode GUI library for Rust" edition = "2018" diff --git a/egui_glium/Cargo.toml b/egui_glium/Cargo.toml index bfdfd336..e3a5711f 100644 --- a/egui_glium/Cargo.toml +++ b/egui_glium/Cargo.toml @@ -15,7 +15,7 @@ include = [ "**/*.rs", "Cargo.toml"] [dependencies] chrono = { version = "0.4" } clipboard = "0.5" -egui = { version = "0.1.3", path = "../egui", features = ["serde", "serde_json"] } +egui = { version = "0.1.4", path = "../egui", features = ["serde", "serde_json"] } glium = "0.27" serde = "1" serde_json = "1" diff --git a/egui_web/Cargo.toml b/egui_web/Cargo.toml index 41dd085b..f826b7a4 100644 --- a/egui_web/Cargo.toml +++ b/egui_web/Cargo.toml @@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"] crate-type = ["cdylib", "rlib"] [dependencies] -egui = { version = "0.1.3", path = "../egui", features = ["serde"] } +egui = { version = "0.1.4", path = "../egui", features = ["serde"] } js-sys = "0.3" parking_lot = "0.11" serde = "1"