servicepoint/examples/game_of_life/Cargo.toml

13 lines
239 B
TOML
Raw Normal View History

2024-05-10 12:24:07 +02:00
[package]
name = "game_of_life"
version = "0.1.0"
edition = "2021"
2024-05-11 17:38:25 +02:00
publish = false
2024-05-10 12:24:07 +02:00
[dependencies]
servicepoint = { path = "../../crates/servicepoint" }
2024-05-12 13:51:41 +02:00
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
2024-05-10 12:24:07 +02:00
rand = "0.8.5"