-
Notifications
You must be signed in to change notification settings - Fork 55
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
1 parent
ddf0065
commit 4c0b7f5
Showing
2 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -16,34 +16,34 @@ description = "A simple portable multimedia layer to create apps or games easily | |
members = ["crates/*"] | ||
|
||
[workspace.package] | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Nazarí González <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/Nazariglez/notan" | ||
repository = "https://github.com/Nazariglez/notan" | ||
edition = "2021" | ||
|
||
[workspace.dependencies] | ||
notan_core = { path = "crates/notan_core", version = "0.11.0" } | ||
notan_input = { path = "crates/notan_input", version = "0.11.0" } | ||
notan_app = { path = "crates/notan_app", version = "0.11.0" } | ||
notan_macro = { path = "crates/notan_macro", version = "0.11.0" } | ||
notan_math = { path = "crates/notan_math", version = "0.11.0" } | ||
notan_graphics = { path = "crates/notan_graphics", version = "0.11.0" } | ||
notan_utils = { path = "crates/notan_utils", version = "0.11.0" } | ||
notan_log = { path = "crates/notan_log", version = "0.11.0" } | ||
notan_glyph = { path = "crates/notan_glyph", version = "0.11.0" } | ||
notan_draw = { path = "crates/notan_draw", version = "0.11.0" } | ||
notan_backend = { path = "crates/notan_backend", version = "0.11.0" } | ||
notan_egui = { path = "crates/notan_egui", version = "0.11.0" } | ||
notan_text = { path = "crates/notan_text", version = "0.11.0" } | ||
notan_audio = { path = "crates/notan_audio", version = "0.11.0" } | ||
notan_extra = { path = "crates/notan_extra", version = "0.11.0" } | ||
notan_random = { path = "crates/notan_random", version = "0.11.0" } | ||
notan_winit = { path = "crates/notan_winit", version = "0.11.0" } | ||
notan_web = { path = "crates/notan_web", version = "0.11.0" } | ||
notan_glow = { path = "crates/notan_glow", version = "0.11.0" } | ||
notan_oddio = { path = "crates/notan_oddio", version = "0.11.0" } | ||
notan_core = { path = "crates/notan_core", version = "0.12.0" } | ||
notan_input = { path = "crates/notan_input", version = "0.12.0" } | ||
notan_app = { path = "crates/notan_app", version = "0.12.0" } | ||
notan_macro = { path = "crates/notan_macro", version = "0.12.0" } | ||
notan_math = { path = "crates/notan_math", version = "0.12.0" } | ||
notan_graphics = { path = "crates/notan_graphics", version = "0.12.0" } | ||
notan_utils = { path = "crates/notan_utils", version = "0.12.0" } | ||
notan_log = { path = "crates/notan_log", version = "0.12.0" } | ||
notan_glyph = { path = "crates/notan_glyph", version = "0.12.0" } | ||
notan_draw = { path = "crates/notan_draw", version = "0.12.0" } | ||
notan_backend = { path = "crates/notan_backend", version = "0.12.0" } | ||
notan_egui = { path = "crates/notan_egui", version = "0.12.0" } | ||
notan_text = { path = "crates/notan_text", version = "0.12.0" } | ||
notan_audio = { path = "crates/notan_audio", version = "0.12.0" } | ||
notan_extra = { path = "crates/notan_extra", version = "0.12.0" } | ||
notan_random = { path = "crates/notan_random", version = "0.12.0" } | ||
notan_winit = { path = "crates/notan_winit", version = "0.12.0" } | ||
notan_web = { path = "crates/notan_web", version = "0.12.0" } | ||
notan_glow = { path = "crates/notan_glow", version = "0.12.0" } | ||
notan_oddio = { path = "crates/notan_oddio", version = "0.12.0" } | ||
|
||
log = "0.4.20" | ||
hashbrown = "0.14.1" | ||
|