tetris/Cargo.toml

16 lines
506 B
TOML
Raw Normal View History

2019-10-27 21:58:03 -07:00
[package]
name = "tetris"
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-04-05 10:24:10 -07:00
rand = { version = "0.7", features = ["default", "small_rng"] }
2020-03-20 21:05:39 -07:00
tokio = { version = "0.2", features = ["full"] }
log = "0.4"
simple_logger = "1.6"
2020-03-30 09:28:53 -07:00
sdl2 = { version = "0.33.0", features = ["ttf"] }
2020-03-30 14:23:51 -07:00
clap = { git = "https://github.com/clap-rs/clap/", features = ["color"] }
indicatif = "0.14"