mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 08:58:04 +00:00
92a7e16aed
# Objective - there are a few new versions for `ron`, `winit`, `ndk`, `raw-window-handle` - `cargo-deny` is failing due to new security issues / duplicated dependencies ## Solution - Update our dependencies - Note all new security issues, with which of Bevy direct dependency it comes from - Update duplicate crate list, with which of Bevy direct dependency it comes from `notify` is not updated here as it's in #2993
21 lines
567 B
TOML
21 lines
567 B
TOML
[package]
|
|
name = "bevy_window"
|
|
version = "0.5.0"
|
|
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"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
bevy_app = { path = "../bevy_app", version = "0.5.0" }
|
|
bevy_math = { path = "../bevy_math", version = "0.5.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
|
|
raw-window-handle = "0.4.2"
|
|
|
|
# other
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
web-sys = "0.3"
|