summaryrefslogtreecommitdiffstats
path: root/CLI/rust/Cargo.toml
blob: 4f6d159c56782e440c9540b77b044b58d5f32477 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "terminal_game_of_life"
version = "1.0.0"
authors = ["a14m <[email protected]>"]
edition = "2018"
description = "Conway's game of life implementation as a CLI rust crate"
readme = "README.md"
homepage = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/rust/README.md"
repository = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/rust"
license = "MIT"

[[bin]]
name = "game-of-life"
path = "src/main.rs"

[dependencies]
clap = { version = "3.0.0-beta.2", features = ["wrap_help"] }
ctrlc = "3.1.8"
curl = "0.4.35"
rand = "0.8.3"
rand_distr = "0.4.0"
regex = "1.4.5"
terminal_size = "0.1.16"

[dev-dependencies]
mocktopus = "^0.7.0"