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.
[Cargo.toml] Prepare to publish fork
While preparing for publication, I realized I cannot publish crates with cyclic dev-dependencies. That's an interesting issue, and a work-around is currently used: rust-lang/cargo#4242
- Loading branch information
1 parent
7474f43
commit bdbc99c
Showing
16 changed files
with
72 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
[package] | ||
name = "imgui" | ||
version = "0.0.19-pre" | ||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"] | ||
name = "aflak_imgui" | ||
version = "0.18.1" | ||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", | ||
"Malik Olivier Boussejra <malik@boussejra.com>", | ||
"imgui-rs contributors"] | ||
description = "High-level Rust bindings to dear imgui" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
repository = "https://github.com/Gekkio/imgui-rs" | ||
homepage = "https://github.com/malikolivier/imgui-rs" | ||
repository = "https://github.com/malikolivier/imgui-rs" | ||
license = "MIT/Apache-2.0" | ||
categories = ["gui", "api-bindings"] | ||
readme = "README.markdown" | ||
|
||
[badges] | ||
travis-ci = { repository = "Gekkio/imgui-rs" } | ||
|
||
[dependencies] | ||
imgui-sys = { version = "0.0.19-pre", path = "imgui-sys" } | ||
aflak_imgui-sys = { version = "0.18.1", path = "imgui-sys" } | ||
|
||
# Comment this section when publishing new releases to crates.io! | ||
[dev-dependencies] | ||
glium = { version = "0.22", default-features = true } | ||
imgui-glium-renderer = { path = "imgui-glium-renderer" } | ||
aflak_imgui-glium-renderer = { path = "imgui-glium-renderer", version = "0.18.1" } | ||
|
||
[workspace] | ||
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "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
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
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
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
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
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,17 +1,14 @@ | ||
[package] | ||
name = "imgui-glium-renderer" | ||
version = "0.0.19-pre" | ||
name = "aflak_imgui-glium-renderer" | ||
version = "0.18.1" | ||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"] | ||
description = "Glium renderer for the imgui crate" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
repository = "https://github.com/Gekkio/imgui-rs" | ||
homepage = "https://github.com/malikolivier/imgui-rs" | ||
repository = "https://github.com/malikolivier/imgui-rs" | ||
license = "MIT/Apache-2.0" | ||
categories = ["gui", "rendering"] | ||
|
||
[badges] | ||
travis-ci = { repository = "Gekkio/imgui-rs" } | ||
|
||
[dependencies] | ||
glium = { version = "0.22", default-features = false } | ||
imgui = { version = "0.0.19-pre", path = "../" } | ||
imgui-sys = { version = "0.0.19-pre", path = "../imgui-sys", features = ["glium"] } | ||
aflak_imgui = { version = "0.18.1", path = "../" } | ||
aflak_imgui-sys = { version = "0.18.1", 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
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
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