Bump Egui version to 0.1.4
This commit is contained in:
parent
6907e747c6
commit
b9a3240ca3
4 changed files with 9 additions and 9 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -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)",
|
||||
]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "egui"
|
||||
version = "0.1.3"
|
||||
version = "0.1.4"
|
||||
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
|
||||
description = "Simple, portable immediate mode GUI library for Rust"
|
||||
edition = "2018"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue