tetris/Cargo.toml

18 lines
523 B
TOML
Raw Permalink Normal View History

2019-10-28 04:58:03 +00: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 17:24:10 +00:00
rand = { version = "0.7", features = ["default", "small_rng"] }
2020-03-21 04:05:39 +00:00
tokio = { version = "0.2", features = ["full"] }
log = "0.4"
simple_logger = "1.6"
2020-03-30 16:28:53 +00:00
sdl2 = { version = "0.33.0", features = ["ttf"] }
2020-03-30 21:23:51 +00:00
clap = { git = "https://github.com/clap-rs/clap/", features = ["color"] }
2020-04-06 20:07:30 +00:00
indicatif = "0.14"
2020-04-06 22:37:21 +00:00
futures = "0.3"