tetres/iced-tetris/Cargo.toml

14 lines
334 B
TOML
Raw Normal View History

2021-09-20 02:30:03 -07:00
[package]
name = "iced-tetris"
version = "0.1.0"
2024-10-03 18:12:09 -07:00
edition = "2021"
2021-09-20 02:30:03 -07:00
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-10-03 18:51:02 -07:00
iced = { version = "0.13.1", features = ["tokio", "canvas"] }
2021-09-20 19:20:24 -07:00
chrono = "0.4.19"
rand = "0.8.4"
2024-10-03 17:22:12 -07:00
tetris-logic = { path = "../tetris-logic" }