cli_2048 0.2.0

2048 for the command line
Documentation
[package]

name = "cli_2048"

version = "0.2.0"

edition = "2021"

authors = ["David Bühler <david@buehler-online.de>"]

description = "2048 for the command line"

documentation = "https://docs.rs/cli_2048"

repository = "https://github.com/daveiator/cli_2048"

readme = "README.md"

license = "MIT"

keywords = ["2048", "game"]

categories = ["Command line utilities", "Games"]



# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[bin]]

name = "2048"

path = "src/main.rs"



[lib]

name = "cli_2048"

path = "src/lib.rs"



[dependencies]

rand = "0.8.4"

phf = { version = "0.10", features = ["macros"] }

crossterm = "0.23.2"