forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
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
28 changed files
with
31 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bevy" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "A refreshingly simple data-driven game engine and app framework" | ||
|
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 = "bevy_app" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides core App functionality for Bevy Engine" | ||
|
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 = "bevy_asset" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides asset functionality for Bevy Engine" | ||
|
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 = "bevy_audio" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides audio functionality for Bevy Engine" | ||
|
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 = "bevy_core" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides core functionality for Bevy Engine" | ||
|
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 = "bevy_derive" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides derive implementations for Bevy Engine" | ||
|
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 = "bevy_diagnostic" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides diagnostic functionality for Bevy Engine" | ||
|
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 = "bevy_ecs" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Bevy Engine's custom entity component system" | ||
|
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 = "bevy_hecs" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system" | ||
authors = [ | ||
"Benjamin Saunders <[email protected]>", | ||
|
@@ -27,7 +27,7 @@ macros = ["bevy_hecs_macros", "lazy_static"] | |
serialize = ["serde"] | ||
|
||
[dependencies] | ||
bevy_hecs_macros = { path = "macros", version = "0.1.0", optional = true } | ||
bevy_hecs_macros = { path = "macros", version = "0.1.3", optional = true } | ||
hashbrown = { version = "0.8.0", default-features = false, features = ["ahash", "inline-more"] } | ||
lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] } | ||
serde = { version = "1", features = ["derive"], optional = true} | ||
|
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 = "bevy_hecs_macros" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
description = "Bevy fork of hecs-macros: procedural macro definitions for hecs" | ||
authors = ["Benjamin Saunders <[email protected]>"] | ||
edition = "2018" | ||
|
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 = "bevy_gltf" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Bevy Engine GLTF loading" | ||
|
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 = "bevy_input" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides input functionality for Bevy Engine" | ||
|
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 = "bevy_math" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides math functionality for Bevy Engine" | ||
|
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 = "bevy_pbr" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Adds PBR rendering to Bevy Engine" | ||
|
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 = "bevy_property" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Dynamically interact with struct fields using their names" | ||
|
@@ -17,6 +17,6 @@ bevy_property_derive = {path = "bevy_property_derive", version = "0.1"} | |
|
||
# other | ||
erased-serde = "0.3" | ||
bevy_ron = {path = "../bevy_ron", version = "0.1.0"} | ||
bevy_ron = {path = "../bevy_ron", version = "0.1.3"} | ||
serde = "1" | ||
smallvec = {version = "1.4", features = ["serde"]} |
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 = "bevy_property_derive" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Derive implementations for bevy_property" | ||
|
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 = "bevy_render" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides rendering functionality for Bevy Engine" | ||
|
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 = "bevy_scene" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides scene functionality for Bevy Engine" | ||
|
@@ -19,7 +19,7 @@ bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" } | |
|
||
# other | ||
serde = { version = "1.0", features = ["derive"]} | ||
bevy_ron = { path = "../bevy_ron", version = "0.1.0" } | ||
bevy_ron = { path = "../bevy_ron", version = "0.1.3" } | ||
uuid = { version = "0.8", features = ["v4", "serde"] } | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
|
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 = "bevy_sprite" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides sprite functionality for Bevy Engine" | ||
|
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 = "bevy_text" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides text functionality for Bevy Engine" | ||
|
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 = "bevy_transform" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides hierarchy and transform functionality for Bevy Engine" | ||
|
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 = "bevy_type_registry" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides a type registry for Bevy Engine" | ||
|
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 = "bevy_ui" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "A custom ECS-driven UI framework built specifically for Bevy Engine" | ||
|
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 = "bevy_wgpu" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "A wgpu render backend for Bevy Engine" | ||
|
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 = "bevy_window" | ||
version = "0.1.0" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "Provides windowing functionality for Bevy Engine" | ||
|
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 = "bevy_winit" | ||
version = "0.1.1" | ||
version = "0.1.3" | ||
edition = "2018" | ||
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"] | ||
description = "A winit window and input backend for Bevy Engine" | ||
|
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