Skip to content

Commit

Permalink
Merge pull request #212 from Nazariglez/develop
Browse files Browse the repository at this point in the history
v0.9.1 - Fix docs compilation
  • Loading branch information
Nazariglez authored Jan 25, 2023
2 parents 100ffb9 + 44bc2ff commit 0aeb06e
Show file tree
Hide file tree
Showing 22 changed files with 105 additions and 105 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Cargo.toml
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"]
Expand All @@ -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/*"]
Expand Down
16 changes: 8 additions & 8 deletions crates/notan_app/Cargo.toml
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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/notan_audio/Cargo.toml
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"
Expand Down
6 changes: 3 additions & 3 deletions crates/notan_backend/Cargo.toml
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"
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion crates/notan_core/Cargo.toml
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"
Expand Down
14 changes: 7 additions & 7 deletions crates/notan_draw/Cargo.toml
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"
Expand All @@ -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"
8 changes: 4 additions & 4 deletions crates/notan_egui/Cargo.toml
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"
Expand All @@ -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 = []
Expand Down
4 changes: 2 additions & 2 deletions crates/notan_extra/Cargo.toml
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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/notan_glow/Cargo.toml
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"
Expand All @@ -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"] }

Expand Down
Loading

0 comments on commit 0aeb06e

Please sign in to comment.