Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove version field for non-publish crates and update descriptions #13100

Merged
merged 2 commits into from
Apr 26, 2024
Merged
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
3 changes: 1 addition & 2 deletions benches/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "benches"
version = "0.1.0"
edition = "2021"
description = "Benchmarks for Bevy engine"
description = "Benchmarks that test Bevy's performance"
publish = false
license = "MIT OR Apache-2.0"

Expand Down
1 change: 0 additions & 1 deletion crates/bevy_ecs_compile_fail_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "bevy_ecs_compile_fail_tests"
version = "0.1.0"
edition = "2021"
description = "Compile fail tests for Bevy Engine's entity component system"
homepage = "https://bevyengine.org"
Expand Down
1 change: 0 additions & 1 deletion crates/bevy_macros_compile_fail_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "bevy_macros_compile_fail_tests"
version = "0.1.0"
edition = "2021"
description = "Compile fail tests for Bevy Engine's various macros"
homepage = "https://bevyengine.org"
Expand Down
1 change: 0 additions & 1 deletion crates/bevy_reflect_compile_fail_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[package]
name = "bevy_reflect_compile_fail_tests"
version = "0.1.0"
edition = "2021"
description = "Compile fail tests for Bevy Engine's reflection system"
homepage = "https://bevyengine.org"
Expand Down
4 changes: 1 addition & 3 deletions errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[package]
name = "errors"
version = "0.1.0"
edition = "2021"
description = "Bevy's error codes"
description = "Documentation and tests for Bevy's error codes"
publish = false
license = "MIT OR Apache-2.0"


[dependencies]
bevy = { path = ".." }

Expand Down
3 changes: 2 additions & 1 deletion examples/mobile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "bevy_mobile_example"
version = "0.1.0"
BD103 marked this conversation as resolved.
Show resolved Hide resolved
# Version is required by `cargo-apk`, though this value will never change.
version = "0.0.0"
edition = "2021"
description = "Example for building an iOS or Android app with Bevy"
publish = false
Expand Down
4 changes: 1 addition & 3 deletions tools/build-templated-pages/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[package]
name = "build-templated-pages"
version = "0.14.0-dev"
edition = "2021"
description = "handle templated pages in Bevy repository"
description = "Tool that checks and fixes undocumented features and examples"
publish = false
license = "MIT OR Apache-2.0"


[dependencies]
toml_edit = { version = "0.22.7", default-features = false, features = [
"parse",
Expand Down
3 changes: 1 addition & 2 deletions tools/build-wasm-example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "build-wasm-example"
version = "0.1.0"
edition = "2021"
description = "Build an example for wasm"
description = "Tool for building example for WASM"
publish = false
license = "MIT OR Apache-2.0"

Expand Down
3 changes: 1 addition & 2 deletions tools/ci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "ci"
version = "0.1.0"
edition = "2021"
description = "CI script for Bevy"
description = "Tool that enables running CI checks locally."
publish = false
license = "MIT OR Apache-2.0"

Expand Down
4 changes: 1 addition & 3 deletions tools/example-showcase/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[package]
name = "example-showcase"
version = "0.14.0-dev"
edition = "2021"
description = "Run examples"
description = "Tool for running examples or generating a showcase page for the website."
publish = false
license = "MIT OR Apache-2.0"


[dependencies]
xshell = "0.2"
clap = { version = "4.0", features = ["derive"] }
Expand Down