aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: fd44fc9fecdc4065a1c03b2331c7693f3bb48249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "gof-rs"
version = "0.1.0"
license = "MIT"
authors = ["Omar Magdy <omar.professional8777@gmai.com>"]
description = "Game of life in your terminal with over 500 uniquer patterns to choose from."
repository = "https://github.com/omagdy7/gof-rs"
keywords = ["cli", "game-of-life"]
edition = "2021"
include = ["../presets/patterns/*.txt"]

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

[dependencies]
colored = "2.0.0"
crossterm = "0.25.0"
rand = "0.8.5"
tui = "0.19.0"

[[bin]]
name="gof-rs"
path="src/main.rs"