-
Notifications
You must be signed in to change notification settings - Fork 4
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
19 additions
and
19 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 = "kludgine-app" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2018" | ||
description = "Application and Windowing for Kludgine" | ||
|
@@ -18,7 +18,7 @@ tokio = ["dep:tokio"] | |
smol = ["dep:smol", "dep:smol-timeout", "dep:easy-parallel"] | ||
|
||
[dependencies] | ||
kludgine-core = { version = "0.4.0", path = "../core" } | ||
kludgine-core = { version = "0.5.0", path = "../core" } | ||
parking_lot = "0.12.0" | ||
|
||
tracing = "0.1.29" | ||
|
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 = "kludgine-core" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2018" | ||
description = "2D rendering for Kludgine" | ||
|
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 = "kludgine" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2021" | ||
description = "An asynchronous app and 2d game framework" | ||
|
@@ -27,11 +27,11 @@ bundled-fonts-roboto = ["kludgine-core/bundled-fonts-roboto"] | |
serde = ["kludgine-core/serde"] | ||
|
||
[dependencies] | ||
kludgine-core = { version = "0.4.0", path = "../core" } | ||
kludgine-core = { version = "0.5.0", path = "../core" } | ||
# For some reason, changing this to app = { package = ".."} allows the dep: | ||
# syntax to work as expected. Using the normal kludgine-app = { version .. } | ||
# path causes a cryptic error when using the dep: syntax in the app feature. | ||
app = { package = "kludgine-app", version = "0.4.0", path = "../app", optional = true, default-features = false } | ||
app = { package = "kludgine-app", version = "0.5.0", path = "../app", optional = true, default-features = false } | ||
cfg-if = "1.0.0" | ||
|
||
# [target.'cfg(target_arch = "wasm32")'.dependencies] | ||
|