14 lines
324 B
TOML
14 lines
324 B
TOML
[package]
|
|
name = "iced-tetris"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
iced = { version = "0.13.1", features = ["tokio"] }
|
|
chrono = "0.4.19"
|
|
rand = "0.8.4"
|
|
tetris-logic = { path = "../tetris-logic" }
|