turtlegame/Cargo.toml
Glaeder a6d9e088ef
Some checks failed
Rust / rustfmt (push) Successful in 25s
Rust / clippy (push) Failing after 2m29s
Rust / build (push) Successful in 3m29s
room-creation (#15)
Co-authored-by: Dominic <git@msrd0.de>
Co-authored-by: Fredi <fredrik.konrad@rwth-aachen.de>
Reviewed-on: #15
Co-authored-by: Glaeder <niklas@vousten.dev>
Co-committed-by: Glaeder <niklas@vousten.dev>
2024-07-07 14:13:52 +00:00

29 lines
720 B
TOML

[package]
name = "powercreep"
version = "0.1.0"
publish = false
edition = "2021"
repository = "https://msrd0.dev/spielemarmelade/turtlegame"
description = "turtlegame - the game from the turtleteam :)"
[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]
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" }