
# Objective I was lurking and noticed that some links to the Bevy website were not updated in newer code (`bevyengine.org` -> `bevy.org`). ## Solution - Look for `bevyengine.org` occurrences in the current code, replace them with `bevy.org`. ## Testing - Did you test these changes? If so, how? I visited the Bevy website! - Are there any parts that need more testing? - How can other people (reviewers) test your changes? Is there anything specific they need to know? - If relevant, what platforms did you test these changes on, and are there any important ones you can't test? ## Longer term - Maybe add a lint to flag references to the old website but I don't know how to do that. But not sure it's needed as the more time will pass the less it will be relevant.
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "bevy_core_widgets"
|
|
version = "0.17.0-dev"
|
|
edition = "2024"
|
|
description = "Unstyled common widgets for Bevy Engine"
|
|
homepage = "https://bevy.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.17.0-dev" }
|
|
bevy_a11y = { path = "../bevy_a11y", version = "0.17.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.17.0-dev" }
|
|
bevy_input = { path = "../bevy_input", version = "0.17.0-dev" }
|
|
bevy_input_focus = { path = "../bevy_input_focus", version = "0.17.0-dev" }
|
|
bevy_log = { path = "../bevy_log", version = "0.17.0-dev" }
|
|
bevy_math = { path = "../bevy_math", version = "0.17.0-dev" }
|
|
bevy_picking = { path = "../bevy_picking", version = "0.17.0-dev" }
|
|
bevy_render = { path = "../bevy_render", version = "0.17.0-dev" }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.17.0-dev" }
|
|
bevy_ui = { path = "../bevy_ui", version = "0.17.0-dev", features = [
|
|
"bevy_ui_picking_backend",
|
|
] }
|
|
|
|
# other
|
|
accesskit = "0.19"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
|
all-features = true
|