mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 05:28:35 +00:00
Bump version to 0.0.24-pre
This commit is contained in:
parent
e2a6ff6ea6
commit
09bff25346
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "High-level Rust bindings to dear imgui"
|
||||
@ -14,7 +14,7 @@ readme = "README.markdown"
|
||||
travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
|
||||
[dependencies]
|
||||
imgui-sys = { version = "0.0.23", path = "imgui-sys" }
|
||||
imgui-sys = { version = "0.0.24-pre", path = "imgui-sys" }
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
|
||||
24
imgui-examples/Cargo.lock
generated
24
imgui-examples/Cargo.lock
generated
@ -342,35 +342,35 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"imgui-sys 0.0.23-pre",
|
||||
"imgui-sys 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-examples"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"gfx 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"gfx_window_glutin 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"glutin 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-gfx-renderer 0.0.23-pre",
|
||||
"imgui-winit-support 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"imgui-gfx-renderer 0.0.24-pre",
|
||||
"imgui-winit-support 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-gfx-renderer"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"gfx 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-sys 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"imgui-sys 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-sys"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -380,9 +380,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui-winit-support"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"winit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-examples"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "imgui crate examples"
|
||||
@ -13,6 +13,6 @@ publish = false
|
||||
gfx = "0.18"
|
||||
gfx_window_glutin = "0.30"
|
||||
glutin = "0.20"
|
||||
imgui = { version = "0.0.23", path = "../" }
|
||||
imgui-gfx-renderer = { version = "0.0.23", path = "../imgui-gfx-renderer" }
|
||||
imgui-winit-support = { version = "0.0.23", path = "../imgui-winit-support" }
|
||||
imgui = { version = "0.0.24-pre", path = "../" }
|
||||
imgui-gfx-renderer = { version = "0.0.24-pre", path = "../imgui-gfx-renderer" }
|
||||
imgui-winit-support = { version = "0.0.24-pre", path = "../imgui-winit-support" }
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-gfx-renderer"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "gfx renderer for the imgui crate"
|
||||
@ -14,5 +14,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
|
||||
[dependencies]
|
||||
gfx = "0.18"
|
||||
imgui = { version = "0.0.23", path = "../" }
|
||||
imgui-sys = { version = "0.0.23", path = "../imgui-sys", features = ["gfx"] }
|
||||
imgui = { version = "0.0.24-pre", path = "../" }
|
||||
imgui-sys = { version = "0.0.24-pre", path = "../imgui-sys", features = ["gfx"] }
|
||||
|
||||
24
imgui-glium-examples/Cargo.lock
generated
24
imgui-glium-examples/Cargo.lock
generated
@ -323,34 +323,34 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"imgui-sys 0.0.23-pre",
|
||||
"imgui-sys 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-glium-examples"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"image 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-glium-renderer 0.0.23-pre",
|
||||
"imgui-winit-support 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"imgui-glium-renderer 0.0.24-pre",
|
||||
"imgui-winit-support 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-glium-renderer"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui-sys 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"imgui-sys 0.0.24-pre",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "imgui-sys"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -360,9 +360,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "imgui-winit-support"
|
||||
version = "0.0.23-pre"
|
||||
version = "0.0.24-pre"
|
||||
dependencies = [
|
||||
"imgui 0.0.23-pre",
|
||||
"imgui 0.0.24-pre",
|
||||
"winit 0.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-glium-examples"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "imgui crate examples using Glium backend"
|
||||
@ -11,7 +11,7 @@ publish = false
|
||||
|
||||
[dev-dependencies]
|
||||
glium = { version = "0.23", default-features = true }
|
||||
imgui = { version = "0.0.23", path = "../" }
|
||||
imgui-glium-renderer = { version = "0.0.23", path = "../imgui-glium-renderer" }
|
||||
imgui-winit-support = { version = "0.0.23", path = "../imgui-winit-support" }
|
||||
imgui = { version = "0.0.24-pre", path = "../" }
|
||||
imgui-glium-renderer = { version = "0.0.24-pre", path = "../imgui-glium-renderer" }
|
||||
imgui-winit-support = { version = "0.0.24-pre", path = "../imgui-winit-support" }
|
||||
image = "0.21"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-glium-renderer"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "Glium renderer for the imgui crate"
|
||||
@ -14,5 +14,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
|
||||
[dependencies]
|
||||
glium = { version = "0.23", default-features = false }
|
||||
imgui = { version = "0.0.23", path = "../" }
|
||||
imgui-sys = { version = "0.0.23", path = "../imgui-sys", features = ["glium"] }
|
||||
imgui = { version = "0.0.24-pre", path = "../" }
|
||||
imgui-sys = { version = "0.0.24-pre", path = "../imgui-sys", features = ["glium"] }
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-sys"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "Raw FFI bindings to dear imgui"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "imgui-winit-support"
|
||||
version = "0.0.23"
|
||||
version = "0.0.24-pre"
|
||||
edition = "2018"
|
||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||
description = "winit support code for the imgui crate"
|
||||
@ -13,5 +13,5 @@ categories = ["gui"]
|
||||
travis-ci = { repository = "Gekkio/imgui-rs" }
|
||||
|
||||
[dependencies]
|
||||
imgui = { version = "0.0.23", path = "../" }
|
||||
imgui = { version = "0.0.24-pre", path = "../" }
|
||||
winit = ">= 0.16, <= 0.19"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user