forked from imgui-rs/imgui-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "imgui" | ||
version = "0.0.12-pre" | ||
version = "0.0.12" | ||
authors = ["Joonas Javanainen <[email protected]>"] | ||
description = "Experimental bindings to ocornut/imgui" | ||
readme = "README.markdown" | ||
|
@@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0" | |
categories = ["gui", "api-bindings"] | ||
|
||
[dependencies] | ||
imgui-sys = { path = "imgui-sys" } | ||
imgui-sys = { version = "0.0.12", path = "imgui-sys" } | ||
|
||
[dev-dependencies] | ||
glium = "0.16" | ||
imgui-glium-renderer = { path = "imgui-glium-renderer" } | ||
imgui-glium-renderer = { version = "0.0.12", path = "imgui-glium-renderer" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "imgui-glium-renderer" | ||
version = "0.0.12-pre" | ||
version = "0.0.12" | ||
authors = ["Joonas Javanainen <[email protected]>"] | ||
description = "Glium renderer for imgui-rs" | ||
homepage = "https://github.com/gekkio/imgui-rs" | ||
|
@@ -10,5 +10,5 @@ categories = ["gui", "rendering"] | |
|
||
[dependencies] | ||
glium = { version = "0.16", default-features = false } | ||
imgui = { path = "../" } | ||
imgui-sys = { path = "../imgui-sys", features = ["glium"] } | ||
imgui = { version = "0.0.12", path = "../" } | ||
imgui-sys = { version = "0.0.12", path = "../imgui-sys", features = ["glium"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "imgui-sys" | ||
version = "0.0.12-pre" | ||
version = "0.0.12" | ||
authors = ["Joonas Javanainen <[email protected]>"] | ||
description = "Raw ocornut/imgui bindings for Rust" | ||
homepage = "https://github.com/gekkio/imgui-rs" | ||
|