Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo run -p build-example-pages -- check-missing

check-examples-readme-update-needed:
needs: check-missing-examples-in-docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo run -p build-example-pages -- update
- name: Check for modified files
run: |
Expand Down
33 changes: 20 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
[package]
name = "bevy"
version = "0.9.0"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
exclude = ["assets/", "tools/", ".github/", "crates/", "examples/wasm/assets/"]
homepage = "https://bevyengine.org"
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/bevyengine/bevy"

[workspace]
exclude = ["benches", "crates/bevy_ecs_compile_fail_tests"]
Comment thread
dani162 marked this conversation as resolved.
members = [
Expand All @@ -24,6 +11,26 @@ members = [
"errors",
]

[workspace.package]
Comment thread
dani162 marked this conversation as resolved.
version = "0.9.0"
edition = "2021"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"

[package]
name = "bevy"
version.workspace = true
edition.workspace = true
categories = ["game-engines", "graphics", "gui", "rendering"]
Comment thread
dani162 marked this conversation as resolved.
description = "A refreshingly simple data-driven game engine and app framework"
exclude = ["assets/", "tools/", ".github/", "crates/", "examples/wasm/assets/"]
Comment thread
dani162 marked this conversation as resolved.
homepage.workspace = true
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
license.workspace = true
readme = "README.md"
repository.workspace = true

[features]
default = [
"animation",
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_animation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_animation"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides animation functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_app"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides core App functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_asset"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides asset functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_audio"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides audio functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_core"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides core functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]


Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_core_pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "bevy_core_pipeline"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
"Carter Anderson <mcanders1@gmail.com>",
]
description = "Provides a core render pipeline for Bevy Engine."
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_derive"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides derive implementations for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[lib]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_diagnostic"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides diagnostic functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]


Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_dylib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_dylib"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Force the Bevy Engine to be dynamically linked for faster linking"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[lib]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_dynamic_plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_dynamic_plugin"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides dynamic plugin loading capabilities for non-wasm platforms"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_ecs"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Bevy Engine's entity component system"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["ecs", "game", "bevy"]
categories = ["game-engines", "data-structures"]

Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_ecs/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "bevy_ecs_macros"
version = "0.9.0"
version.workspace = true
description = "Bevy ECS Macros"
edition = "2021"
license = "MIT OR Apache-2.0"
edition.workspace = true
license.workspace = true

[lib]
proc-macro = true
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_encase_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_encase_derive"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Bevy derive macro for encase"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[lib]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_gilrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_gilrs"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Gamepad system made using Gilrs for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_gltf"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Bevy Engine GLTF loading"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_hierarchy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_hierarchy"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides hierarchy functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_input"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides input functionality for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_internal"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "An internal Bevy crate used to facilitate optional dynamic linking via the 'dynamic' feature"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
categories = ["game-engines", "graphics", "gui", "rendering"]

Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_log/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_log"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "Provides logging for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[features]
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_macro_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "bevy_macro_utils"
version = "0.9.0"
edition = "2021"
version.workspace = true
edition.workspace = true
description = "A collection of utils for Bevy Engine"
homepage = "https://bevyengine.org"
repository = "https://github.com/bevyengine/bevy"
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["bevy"]

[dependencies]
Expand Down
Loading