-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from Nazariglez/develop
v0.9.1 - Fix docs compilation
- Loading branch information
Showing
22 changed files
with
105 additions
and
105 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "notan" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
categories = ["graphics", "rendering", "wasm", "gui", "multimedia"] | ||
|
@@ -13,28 +13,28 @@ license = "MIT OR Apache-2.0" | |
description = "A simple portable multimedia layer to create apps or games easily" | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
features = ["default", "glyph", "egui", "text", "extra", "audio", "links", "drop_files", "clipboard", "save_file", "texture_to_file", ] | ||
|
||
[profile.release] | ||
lto = true | ||
|
||
[dependencies] | ||
notan_core = { path = "crates/notan_core", version = "0.9.0" } | ||
notan_input = { path = "crates/notan_input", version = "0.9.0" } | ||
notan_app = { path = "crates/notan_app", version = "0.9.0" } | ||
notan_macro = { path = "crates/notan_macro", version = "0.9.0" } | ||
notan_math = { path = "crates/notan_math", version = "0.9.0" } | ||
notan_graphics = { path = "crates/notan_graphics", version = "0.9.0" } | ||
notan_utils = { path = "crates/notan_utils", version = "0.9.0" } | ||
notan_log = { path = "crates/notan_log", version = "0.9.0", optional = true } | ||
notan_glyph = { path = "crates/notan_glyph", version = "0.9.0", optional = true } | ||
notan_draw = { path = "crates/notan_draw", version = "0.9.0", optional = true } | ||
notan_backend = { path = "crates/notan_backend", version = "0.9.0", optional = true } | ||
notan_egui = { path = "crates/notan_egui", version = "0.9.0", optional = true } | ||
notan_text = { path = "crates/notan_text", version = "0.9.0", optional = true } | ||
notan_audio = { path = "crates/notan_audio", version = "0.9.0", optional = true } | ||
notan_extra = { path = "crates/notan_extra", version = "0.9.0", optional = true } | ||
notan_random = { path = "crates/notan_random", version = "0.9.0", optional = true } | ||
notan_core = { path = "crates/notan_core", version = "0.9.1" } | ||
notan_input = { path = "crates/notan_input", version = "0.9.1" } | ||
notan_app = { path = "crates/notan_app", version = "0.9.1" } | ||
notan_macro = { path = "crates/notan_macro", version = "0.9.1" } | ||
notan_math = { path = "crates/notan_math", version = "0.9.1" } | ||
notan_graphics = { path = "crates/notan_graphics", version = "0.9.1" } | ||
notan_utils = { path = "crates/notan_utils", version = "0.9.1" } | ||
notan_log = { path = "crates/notan_log", version = "0.9.1", optional = true } | ||
notan_glyph = { path = "crates/notan_glyph", version = "0.9.1", optional = true } | ||
notan_draw = { path = "crates/notan_draw", version = "0.9.1", optional = true } | ||
notan_backend = { path = "crates/notan_backend", version = "0.9.1", optional = true } | ||
notan_egui = { path = "crates/notan_egui", version = "0.9.1", optional = true } | ||
notan_text = { path = "crates/notan_text", version = "0.9.1", optional = true } | ||
notan_audio = { path = "crates/notan_audio", version = "0.9.1", optional = true } | ||
notan_extra = { path = "crates/notan_extra", version = "0.9.1", optional = true } | ||
notan_random = { path = "crates/notan_random", version = "0.9.1", optional = true } | ||
|
||
[workspace] | ||
members = ["crates/*"] | ||
|
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 = "notan_app" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -14,13 +14,13 @@ description = "Provides the core API for Notan" | |
[dependencies] | ||
log = "0.4.17" | ||
hashbrown = "0.13.2" | ||
notan_core = { path = "../notan_core", version = "0.9.0" } | ||
notan_input = { path = "../notan_input", version = "0.9.0" } | ||
notan_math = { path = "../notan_math", version = "0.9.0" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.0" } | ||
notan_graphics = { path = "../notan_graphics", version = "0.9.0" } | ||
notan_utils = { path = "../notan_utils", version = "0.9.0" } | ||
notan_audio = { path = "../notan_audio", version = "0.9.0", optional = true } | ||
notan_core = { path = "../notan_core", version = "0.9.1" } | ||
notan_input = { path = "../notan_input", version = "0.9.1" } | ||
notan_math = { path = "../notan_math", version = "0.9.1" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.1" } | ||
notan_graphics = { path = "../notan_graphics", version = "0.9.1" } | ||
notan_utils = { path = "../notan_utils", version = "0.9.1" } | ||
notan_audio = { path = "../notan_audio", version = "0.9.1", optional = true } | ||
downcast-rs = "1.2.0" | ||
indexmap = "1.9.2" | ||
futures = "0.3.25" | ||
|
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 = "notan_audio" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
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 = "notan_backend" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -12,10 +12,10 @@ description = "Provides a default backend for Notan" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
notan_web = { path = "../notan_web", version = "0.9.0" } | ||
notan_web = { path = "../notan_web", version = "0.9.1" } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
notan_winit = { path = "../notan_winit", version = "0.9.0" } | ||
notan_winit = { path = "../notan_winit", version = "0.9.1" } | ||
|
||
[features] | ||
audio = ["notan_web/audio", "notan_winit/audio"] | ||
|
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 = "notan_core" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
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 = "notan_draw" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -13,12 +13,12 @@ description = "Provides a simple 2D API for Notan" | |
|
||
[dependencies] | ||
log = "0.4.17" | ||
notan_app = { path = "../notan_app", version = "0.9.0" } | ||
notan_graphics = { path = "../notan_graphics", version = "0.9.0" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.0" } | ||
notan_math = { path = "../notan_math", version = "0.9.0" } | ||
notan_glyph = { path = "../notan_glyph", version = "0.9.0" } | ||
notan_text = { path = "../notan_text", version = "0.9.0" } | ||
notan_app = { path = "../notan_app", version = "0.9.1" } | ||
notan_graphics = { path = "../notan_graphics", version = "0.9.1" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.1" } | ||
notan_math = { path = "../notan_math", version = "0.9.1" } | ||
notan_glyph = { path = "../notan_glyph", version = "0.9.1" } | ||
notan_text = { path = "../notan_text", version = "0.9.1" } | ||
lyon = "1.0.1" | ||
serde = { version = "1.0.152", features = ["derive"] } | ||
serde_json = "1.0.91" |
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 = "notan_egui" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -15,9 +15,9 @@ description = "Provides EGUI support for Notan" | |
log = "0.4.17" | ||
egui = { version = "0.20.1", features = ["bytemuck"] } | ||
bytemuck = "1.13.0" | ||
notan_core = { path = "../notan_core", version = "0.9.0" } | ||
notan_app = { path = "../notan_app", version = "0.9.0" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.0" } | ||
notan_core = { path = "../notan_core", version = "0.9.1" } | ||
notan_app = { path = "../notan_app", version = "0.9.1" } | ||
notan_macro = { path = "../notan_macro", version = "0.9.1" } | ||
|
||
[features] | ||
links = [] | ||
|
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 = "notan_extra" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -12,7 +12,7 @@ description = "Provides extra features or plugins for Notan" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
notan_app = { path = "../notan_app", version = "0.9.0" } | ||
notan_app = { path = "../notan_app", version = "0.9.1" } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
spin_sleep = "1.1.1" | ||
|
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 = "notan_glow" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Nazarí González <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -15,7 +15,7 @@ description = "Provides support for OpenGL, OpenGL ES and WebGL for Notan" | |
log = "0.4.17" | ||
bytemuck = "1.13.0" | ||
glow = "0.11.2" | ||
notan_graphics = { path= "../notan_graphics", version = "0.9.0" } | ||
notan_graphics = { path= "../notan_graphics", version = "0.9.1" } | ||
hashbrown = "0.13.2" | ||
image = { version = "0.24.5", default-features = false, features = ["jpeg", "png"] } | ||
|
||
|
Oops, something went wrong.