bevy_window_manager 0.18.0

Bevy plugin for primary window restoration and multi-monitor support
Documentation
[dependencies.bevy]
version = "0.18.0"

[dependencies.dirs]
version = "6.0"

[dependencies.ron]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.bevy_brp_extras]
version = "0.18.0"

[[example]]
name = "custom_app_name"
path = "examples/custom_app_name.rs"

[[example]]
name = "custom_path"
path = "examples/custom_path.rs"

[[example]]
name = "restore_window"
path = "examples/restore_window.rs"

[features]
default = ["workaround-winit-4441", "workaround-winit-4440", "workaround-winit-3124", "workaround-winit-4341", "workaround-winit-4443", "workaround-winit-4445"]
workaround-winit-3124 = []
workaround-winit-4341 = []
workaround-winit-4440 = []
workaround-winit-4441 = ["workaround-winit-4440"]
workaround-winit-4443 = []
workaround-winit-4445 = []

[lib]
name = "bevy_window_manager"
path = "src/lib.rs"

[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
expect_used = "deny"
multiple_crate_versions = "allow"
needless_pass_by_value = "allow"
panic = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development", "gui"]
description = "Bevy plugin for primary window restoration and multi-monitor support"
edition = "2024"
keywords = ["bevy", "gamedev", "monitor", "multi-monitor", "window"]
license = "MIT OR Apache-2.0"
name = "bevy_window_manager"
readme = "README.md"
repository = "https://github.com/natepiano/bevy_window_manager"
version = "0.18.0"

[profile.dev.package."*"]
opt-level = 3

[target.'cfg(target_os = "linux")'.dependencies.raw-window-handle]
version = "0.6"

[target.'cfg(target_os = "linux")'.dependencies.x11rb]
default-features = false
features = ["dl-libxcb"]
version = "0.13"

[target."cfg(windows)".dependencies.raw-window-handle]
version = "0.6"

[target."cfg(windows)".dependencies.windows]
features = ["Win32_Foundation", "Win32_Graphics_Gdi", "Win32_UI_Shell", "Win32_UI_WindowsAndMessaging"]
version = "0.62.2"