You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
TOML
20 lines
392 B
TOML
[package]
|
|
name = "tetris"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.219"
|
|
features = ["derive"]
|
|
|
|
[dependencies.engine]
|
|
path = "../engine"
|
|
|
|
[dependencies]
|
|
toml = "0.9.8"
|
|
thiserror = "*"
|
|
|
|
[dependencies.bevy]
|
|
version = "0.17.2"
|
|
features = ["wayland", "dynamic_linking", "track_location", "experimental_bevy_feathers", "experimental_bevy_ui_widgets", "file_watcher"]
|