2021-09-20 02:30:03 -07:00
|
|
|
[package]
|
|
|
|
name = "iced-tetris"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
iced = { git = "https://github.com/hecrj/iced", rev = "099981cfc2f61a1f37e84100592d65babb94fb82", features = ["tokio", "canvas"] }
|
|
|
|
iced_native = { git = "https://github.com/hecrj/iced", rev = "099981cfc2f61a1f37e84100592d65babb94fb82"}
|
2021-09-20 19:20:24 -07:00
|
|
|
chrono = "0.4.19"
|
|
|
|
rand = "0.8.4"
|
2021-09-20 23:18:24 -07:00
|
|
|
tetris-logic = { path = "tetris-logic" }
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = ["tetris-logic"]
|