mirror of
https://github.com/eRgo35/game-of-life.git
synced 2026-02-04 04:26:10 +01:00
18 lines
474 B
TOML
18 lines
474 B
TOML
[package]
|
|
name = "game-of-life"
|
|
version = "1.0.0"
|
|
authors = ["Michał Czyż <mike@c2yz.com>"]
|
|
edition = "2021"
|
|
|
|
description = "Rust implementation of the Game of Life"
|
|
homepage = "https://github.com/eRgo35/game-of-life"
|
|
repository = "https://github.com/eRgo35/game-of-life"
|
|
documentation = "https://github.com/eRgo35/game-of-life"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.10", features = ["derive"] }
|
|
clearscreen = "3.0.0"
|
|
rand = "0.8.5"
|