[dependencies.bevy]
default-features = false
version = "0.15.3"
[dependencies.egui]
default-features = false
optional = true
version = "0.31.1"
[dev-dependencies.bevy]
default-features = true
version = "0.15.3"
[dev-dependencies.bevy_egui]
default-features = false
features = ["default_fonts", "render"]
version = "0.33.0"
[[example]]
name = "egui"
path = "examples/egui.rs"
required-features = ["egui"]
[features]
default = ["full_speed"]
egui = ["dep:egui"]
exclusive_fullscreen = ["dep:windows", "windows?/Win32_UI_HiDpi", "windows?/Win32_Foundation"]
full_speed = ["power", "priority", "request_fast_gpu"]
power = ["dep:windows", "windows?/Win32_System_Threading"]
priority = ["dep:windows", "windows?/Win32_Foundation", "windows?/Win32_System_Power", "windows?/Win32_System_Registry", "windows?/Win32_System_SystemServices", "dep:nix", "nix?/process", "nix?/pthread", "nix?/sched", "nix?/ucontext", "nix?/user"]
request_fast_gpu = []
unattended = []
[lib]
name = "bevy_mod_speedup"
path = "src/lib.rs"
[package]
authors = ["Frederik Terstappen <freterstappen@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["game-development"]
description = "bevy_mod_speedup is a collection of ways to increase the performance of your application."
documentation = "https://docs.rs/bevy_mod_speedup"
edition = "2021"
exclude = []
homepage = "https://github.com/FrTerstappen/bevy_mod_speedup"
keywords = ["bevy", "gamedev"]
license = "MIT OR Apache-2.0"
name = "bevy_mod_speedup"
readme = "README.md"
repository = "https://github.com/FrTerstappen/bevy_mod_speedup"
rust-version = "1.82.0"
version = "0.7.0"
[package.metadata.docs.rs]
all-features = true
[target.'cfg(any(target_os = "android", target_os = "ios", target_os = "linux", target_os = "macos"))'.dependencies.nix]
default-features = false
optional = true
version = "0.29.0"
[target.'cfg(target_family = "wasm")'.dependencies]
[target.'cfg(target_os = "android")'.dependencies]
[target.'cfg(target_os = "ios")'.dependencies]
[target.'cfg(target_os = "linux")'.dependencies]
[target.'cfg(target_os = "macos")'.dependencies]
[target.'cfg(target_os = "windows")'.dependencies.windows]
default-features = false
optional = true
version = "0.60.0"