2022-01-19 20:52:52 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_full_throttle"
|
2022-12-20 15:35:06 +00:00
|
|
|
description = "Enable CPU performance mode for Bevy games"
|
2022-01-19 22:44:50 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-12-20 15:35:06 +00:00
|
|
|
repository = "https://labs.lightsout.games/projects/bevy_full_throttle"
|
2023-02-12 18:03:26 +00:00
|
|
|
version = "0.1.3"
|
2022-01-19 20:52:52 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-06 21:45:06 +00:00
|
|
|
bevy = { version = "0.10", default-features = false }
|
2023-02-12 18:00:29 +00:00
|
|
|
ctrlc = "3"
|
2022-01-19 20:52:52 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-01-31 16:41:45 +00:00
|
|
|
windows = { version = "0.44", features = ["Win32_Foundation", "Win32_System_Power", "Win32_System_Registry", "Win32_System_SystemServices"] }
|
2022-12-20 15:35:06 +00:00
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
publish = false
|
|
|
|
push = false
|
|
|
|
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
|
|
|
|
pre-release-commit-message = "Release"
|