turtlegame/Cargo.toml

30 lines
720 B
TOML
Raw Normal View History

2024-07-05 17:01:09 +00:00
[package]
2024-07-05 21:10:25 +00:00
name = "powercreep"
2024-07-05 17:01:09 +00:00
version = "0.1.0"
2024-07-05 17:11:18 +00:00
publish = false
2024-07-05 17:01:09 +00:00
edition = "2021"
2024-07-05 17:11:18 +00:00
repository = "https://msrd0.dev/spielemarmelade/turtlegame"
description = "turtlegame - the game from the turtleteam :)"
2024-07-05 17:01:09 +00:00
[workspace]
resolver = "2"
# opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
2024-07-05 21:10:25 +00:00
comfy = { version = "0.4.0", features = ["wayland"] }
indexmap = "2"
log = "0.4.22"
[build-dependencies]
heck = "0.5"
resvg = "0.42"
[patch.crates-io]
# https://github.com/darthdeus/comfy/issues/101
# https://github.com/darthdeus/comfy/pull/102
comfy = { git = "https://github.com/Plonq/comfy/", branch = "101-fix-keyboard-events" }