Bump to v0.10

This commit is contained in:
dbr 2023-01-16 19:26:14 +10:30
parent 068275e1b4
commit fcc4263dce
6 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glium-renderer"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "Glium renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
@ -11,7 +11,7 @@ categories = ["gui", "rendering"]
[dependencies]
glium = { version = "0.32.1", default-features = false }
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
[dev-dependencies]
imgui-winit-support = {path = "../imgui-winit-support"}

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-glow-renderer"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "glow renderer for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
@ -9,13 +9,13 @@ license = "MIT/Apache-2.0"
categories = ["gui", "rendering"]
[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
glow = "0.10.0"
memoffset = "0.6.4"
[dev-dependencies]
glutin = "0.29.1"
imgui-winit-support = { version = "0.9.0", path = "../imgui-winit-support" }
imgui-winit-support = { version = "0.10.0", path = "../imgui-winit-support" }
image = "0.23"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sdl2-support"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "sdl2 support code for the imgui crate"
@ -11,10 +11,10 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
sdl2 = "0.34.5"
[dev-dependencies]
glow = "0.10.0"
imgui-glow-renderer = { version = "0.9.0", path = "../imgui-glow-renderer" }
imgui-glow-renderer = { version = "0.10.0", path = "../imgui-glow-renderer" }
sdl2 = { version = "0.34.5", features = ["bundled", "static-link"] }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"

View File

@ -1,6 +1,6 @@
[package]
name = "imgui-winit-support"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "winit support code for the imgui crate"
homepage = "https://github.com/imgui-rs/imgui-rs"
@ -10,5 +10,5 @@ license = "MIT/Apache-2.0"
categories = ["gui"]
[dependencies]
imgui = { version = "0.9.0", path = "../imgui" }
imgui = { version = "0.10.0", path = "../imgui" }
winit = { version = "0.27.2", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "imgui"
version = "0.9.0"
version = "0.10.0"
edition = "2018"
description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"
@ -17,7 +17,7 @@ features = ["freetype", "docking", "tables-api"]
[dependencies]
bitflags = "1"
imgui-sys = { version = "0.9.0", path = "../imgui-sys" }
imgui-sys = { version = "0.10.0", path = "../imgui-sys" }
mint = "0.5.6"
parking_lot = "0.12"
cfg-if = "1"