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
0ad54c2
commit 7ea9f76
Showing
16 changed files
with
70 additions
and
77 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,22 @@ | ||
[package] | ||
name = "imgui" | ||
version = "0.0.21-pre" | ||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"] | ||
name = "aflak_imgui" | ||
version = "0.20.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.21-pre", path = "imgui-sys" } | ||
aflak_imgui-sys = { version = "0.20.1", path = "imgui-sys" } | ||
|
||
[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.20.1" } | ||
|
||
[workspace] | ||
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer", "imgui-glutin-support"] | ||
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.21-pre" | ||
name = "aflak_imgui-glium-renderer" | ||
version = "0.20.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.21-pre", path = "../" } | ||
imgui-sys = { version = "0.0.21-pre", path = "../imgui-sys", features = ["glium"] } | ||
aflak_imgui = { version = "0.20.1", path = "../" } | ||
aflak_imgui-sys = { version = "0.20.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