Bump Egui version to 0.1.4

This commit is contained in:
Emil Ernerfeldt 2020-09-08 09:47:42 +02:00
parent 6907e747c6
commit b9a3240ca3
4 changed files with 9 additions and 9 deletions

12
Cargo.lock generated
View file

@ -357,7 +357,7 @@ dependencies = [
name = "demo_glium" name = "demo_glium"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"egui 0.1.3", "egui 0.1.4",
"egui_glium 0.1.3", "egui_glium 0.1.3",
"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
@ -366,7 +366,7 @@ dependencies = [
name = "demo_web" name = "demo_web"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"egui 0.1.3", "egui 0.1.4",
"egui_web 0.1.3", "egui_web 0.1.3",
"js-sys 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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]] [[package]]
name = "egui" name = "egui"
version = "0.1.3" version = "0.1.4"
dependencies = [ dependencies = [
"ahash 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "criterion 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -420,7 +420,7 @@ version = "0.1.3"
dependencies = [ dependencies = [
"chrono 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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 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)", "serde_json 1.0.57 (registry+https://github.com/rust-lang/crates.io-index)",
@ -431,7 +431,7 @@ dependencies = [
name = "egui_web" name = "egui_web"
version = "0.1.3" version = "0.1.3"
dependencies = [ dependencies = [
"egui 0.1.3", "egui 0.1.4",
"js-sys 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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" name = "example_glium"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"egui 0.1.3", "egui 0.1.4",
"egui_glium 0.1.3", "egui_glium 0.1.3",
"serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)",
] ]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "egui" name = "egui"
version = "0.1.3" version = "0.1.4"
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"] authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
description = "Simple, portable immediate mode GUI library for Rust" description = "Simple, portable immediate mode GUI library for Rust"
edition = "2018" edition = "2018"

View file

@ -15,7 +15,7 @@ include = [ "**/*.rs", "Cargo.toml"]
[dependencies] [dependencies]
chrono = { version = "0.4" } chrono = { version = "0.4" }
clipboard = "0.5" 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" glium = "0.27"
serde = "1" serde = "1"
serde_json = "1" serde_json = "1"

View file

@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
egui = { version = "0.1.3", path = "../egui", features = ["serde"] } egui = { version = "0.1.4", path = "../egui", features = ["serde"] }
js-sys = "0.3" js-sys = "0.3"
parking_lot = "0.11" parking_lot = "0.11"
serde = "1" serde = "1"