Skip to content

Commit

Permalink
set all engine crates to version 0.36
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed Dec 26, 2024
1 parent 8408609 commit daa02c7
Show file tree
Hide file tree
Showing 19 changed files with 62 additions and 53 deletions.
6 changes: 3 additions & 3 deletions editor-standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyroxed"
version = "0.17.0"
version = "0.36.0"
license = "MIT"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
Expand All @@ -13,6 +13,6 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]

[dependencies]
fyrox = { version = "0.34.0", path = "../fyrox" }
fyroxed_base = { version = "0.21.0", path = "../editor" }
fyrox = { version = "0.36.0", path = "../fyrox" }
fyroxed_base = { version = "0.36.0", path = "../editor" }
clap = { version = "4", features = ["derive"] }
6 changes: 3 additions & 3 deletions editor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fyroxed_base"
license = "MIT"
version = "0.21.1"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
rust-version = "1.80"
Expand All @@ -13,8 +13,8 @@ readme = "README.md"
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md", "/resources/**/*"]

[dependencies]
fyrox = { version = "0.34.1", path = "../fyrox", default-features = false }
fyrox-build-tools = { version = "0.1.0", path = "../fyrox-build-tools" }
fyrox = { version = "0.36.0", path = "../fyrox", default-features = false }
fyrox-build-tools = { version = "0.36.0", path = "../fyrox-build-tools" }
lazy_static = "1.4.0"
ron = "0.8.0"
serde = "^1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions fyrox-animation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-animation"
version = "0.2.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-core = { version = "0.28.1", path = "../fyrox-core" }
fyrox-resource = { version = "0.12.0", path = "../fyrox-resource" }
fyrox-core = { version = "0.36.0", path = "../fyrox-core" }
fyrox-resource = { version = "0.36.0", path = "../fyrox-resource" }
strum = "0.26.1"
strum_macros = "0.26.1"
fxhash = "0.2.1"
Expand Down
4 changes: 2 additions & 2 deletions fyrox-build-tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "fyrox-build-tools"
version = "0.1.0"
version = "0.36.0"
edition = "2021"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0" }
serde = { version = "1.0.215", features = ["derive"] }
2 changes: 1 addition & 1 deletion fyrox-core-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-core-derive"
version = "0.23.0"
version = "0.36.0"
authors = ["toyboot4e <[email protected]>, Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions fyrox-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-core"
version = "0.28.1"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
fyrox-math = { path = "../fyrox-math", version = "0.3.0" }
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.36.0" }
fyrox-math = { path = "../fyrox-math", version = "0.36.0" }
base64 = "0.22.1"
byteorder = "1.4.3"
rand = "0.8.4"
Expand Down
4 changes: 2 additions & 2 deletions fyrox-dylib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-dylib"
version = "0.1.0"
version = "0.36.0"
edition = "2021"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
license = "MIT"
Expand All @@ -23,4 +23,4 @@ mesh_analysis = ["fyrox-impl/mesh_analysis"]
gltf_blend_shapes = ["fyrox-impl/gltf_blend_shapes"]

[dependencies]
fyrox-impl = { path = "../fyrox-impl", version = "0.34.0" }
fyrox-impl = { path = "../fyrox-impl", version = "0.36.0" }
6 changes: 3 additions & 3 deletions fyrox-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-graph"
version = "0.1.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.80"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.36.0" }
fxhash = "0.2.1"
13 changes: 11 additions & 2 deletions fyrox-graphics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
[package]
name = "fyrox-graphics"
version = "0.1.0"
version = "0.36.0"
edition = "2021"
license = "MIT"
description = "Graphics API abstraction for Fyrox Game Engine"
keywords = ["graphics", "gapi"]
categories = ["graphics", "rendering::graphics-api"]
include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"]
homepage = "https://fyrox.rs"
documentation = "https://docs.rs/fyrox-ui"
repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.80"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1", features = ["serde"] }
fyrox-core = { path = "../fyrox-core", version = "0.36.0", features = ["serde"] }
glow = "0.15"
serde = { version = "1", features = ["derive"] }
strum = "0.26.1"
Expand Down
18 changes: 9 additions & 9 deletions fyrox-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-impl"
version = "0.34.1"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
Expand All @@ -15,14 +15,14 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.23.0" }
fyrox-core = { path = "../fyrox-core", version = "0.28.1", features = ["serde"] }
fyrox-sound = { path = "../fyrox-sound", version = "0.35.0" }
fyrox-ui = { path = "../fyrox-ui", version = "0.25.1" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.2.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.1.0" }
fyrox-graphics = { path = "../fyrox-graphics", version = "0.1.0" }
fyrox-core-derive = { path = "../fyrox-core-derive", version = "0.36.0" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0", features = ["serde"] }
fyrox-sound = { path = "../fyrox-sound", version = "0.36.0" }
fyrox-ui = { path = "../fyrox-ui", version = "0.36.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.36.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.36.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.36.0" }
fyrox-graphics = { path = "../fyrox-graphics", version = "0.36.0" }
rapier2d = { version = "0.22", features = ["debug-render"] }
rapier3d = { version = "0.22", features = ["debug-render"] }
image = { version = "0.25.1", default-features = false, features = ["gif", "jpeg", "png", "tga", "tiff", "bmp"] }
Expand Down
2 changes: 1 addition & 1 deletion fyrox-math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-math"
version = "0.3.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions fyrox-resource/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-resource"
version = "0.12.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.80"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0" }
fxhash = "0.2.1"
ron = "0.8.0"
serde = { version = "1", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions fyrox-scripts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-scripts"
version = "0.3.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -14,4 +14,4 @@ repository = "https://github.com/FyroxEngine/Fyrox"
rust-version = "1.80"

[dependencies]
fyrox = { version = "0.34.0", path = "../fyrox" }
fyrox = { version = "0.36.0", path = "../fyrox" }
6 changes: 3 additions & 3 deletions fyrox-sound/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-sound"
version = "0.35.0"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,8 +15,8 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1" }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0" }
fyrox-resource = { path = "../fyrox-resource", version = "0.36.0" }
lewton = "0.10.2"
ogg = "0.8.0"
hrtf = "0.8.0"
Expand Down
10 changes: 5 additions & 5 deletions fyrox-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-ui"
version = "0.25.1"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,10 +15,10 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-core = { path = "../fyrox-core", version = "0.28.1", features = ["serde"] }
fyrox-resource = { path = "../fyrox-resource", version = "0.12.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.1.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.2.0" }
fyrox-core = { path = "../fyrox-core", version = "0.36.0", features = ["serde"] }
fyrox-resource = { path = "../fyrox-resource", version = "0.36.0" }
fyrox-graph = { path = "../fyrox-graph", version = "0.36.0" }
fyrox-animation = { path = "../fyrox-animation", version = "0.36.0" }
lazy_static = "1.4.0"
copypasta = "0.10.1"
fontdue = "0.9.2"
Expand Down
6 changes: 3 additions & 3 deletions fyrox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox"
version = "0.34.1"
version = "0.36.0"
authors = ["Dmitry Stepanov <[email protected]>", "Fyrox Engine Contributors"]
edition = "2021"
license = "MIT"
Expand All @@ -22,5 +22,5 @@ mesh_analysis = ["fyrox-impl/mesh_analysis", "fyrox-dylib/mesh_analysis"]
gltf_blend_shapes = ["fyrox-impl/gltf_blend_shapes", "fyrox-dylib/gltf_blend_shapes"]

[dependencies]
fyrox-impl = { version = "0.34.1", path = "../fyrox-impl", optional = true }
fyrox-dylib = { version = "0.1.0", path = "../fyrox-dylib", optional = true }
fyrox-impl = { version = "0.36.0", path = "../fyrox-impl", optional = true }
fyrox-dylib = { version = "0.36.0", path = "../fyrox-dylib", optional = true }
6 changes: 3 additions & 3 deletions project-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
fyrox = { path = "../fyrox" }
fyrox-template-core = { version = "0.11.0", path = "../template-core" }
fyrox-build-tools = { version = "0.1.0", path = "../fyrox-build-tools" }
fyrox = { version = "0.36.0", path = "../fyrox" }
fyrox-template-core = { version = "0.36.0", path = "../template-core" }
fyrox-build-tools = { version = "0.36.0", path = "../fyrox-build-tools" }
serde = { version = "1", features = ["derive"] }
ron = "0.8.1"
open = "5.0.1"
Expand Down
2 changes: 1 addition & 1 deletion template-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-template-core"
version = "0.11.0"
version = "0.36.0"
edition = "2021"
authors = ["Dmitry Stepanov <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fyrox-template"
version = "0.11.0"
version = "0.36.0"
edition = "2021"
authors = ["Dmitry Stepanov <[email protected]>"]
license = "MIT"
Expand All @@ -14,5 +14,5 @@ readme = "README.md"
rust-version = "1.80"

[dependencies]
fyrox-template-core = { version = "0.11.0", path = "../template-core" }
fyrox-template-core = { version = "0.36.0", path = "../template-core" }
clap = { version = "4", features = ["derive"] }

0 comments on commit daa02c7

Please sign in to comment.