turtlegame/Cargo.toml

22 lines
470 B
TOML
Raw Normal View History

2024-07-05 17:01:09 +00:00
[package]
2024-07-05 17:11:18 +00:00
name = "turtlegame"
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"
# Enable a small amount of optimization in debug mode
[profile.dev]
# 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 17:11:18 +00:00
bevy = "0.14.0"