mirror of
https://github.com/bevyengine/bevy
synced 2024-12-22 11:03:06 +00:00
5ea88895e9
# Objective - Extracted from #14298. - `bevy_window` has an empty `default` feature that does not enable anything, which is equivalent to not having any default features. ## Solution - Remove it :) - This is technically a breaking change, but specifying `features = ["default"]` manually in `Cargo.toml` is highly discouraged, so the impact is low. --- ## Migration Guide `bevy_window` had an empty default feature flag that did not do anything, so it was removed. You may have to remove any references to it if you specified it manually. ```toml # 0.14 [dependencies] bevy_window = { version = "0.14", default-features = false, features = ["default"] } # 0.15 [dependencies] bevy_window = { version = "0.15", default-features = false } ```
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "bevy_window"
|
|
version = "0.15.0-dev"
|
|
edition = "2021"
|
|
description = "Provides windowing functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[features]
|
|
serialize = ["serde", "smol_str/serde", "bevy_ecs/serialize"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_a11y = { path = "../bevy_a11y", version = "0.15.0-dev" }
|
|
bevy_app = { path = "../bevy_app", version = "0.15.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.15.0-dev" }
|
|
bevy_math = { path = "../bevy_math", version = "0.15.0-dev" }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-dev", features = [
|
|
"glam",
|
|
"smol_str",
|
|
] }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.15.0-dev" }
|
|
|
|
# other
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
raw-window-handle = "0.6"
|
|
smol_str = "0.2"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
|
|
all-features = true
|