rust-cli-arcade 0.1.0

A collection of classic CLI games: Tic-Tac-Toe, Connect Four, Hangman, and Rock Paper Scissors
1
2
3
4
5
6
7
8
9
10
11
12
13
[package]
name = "rust-cli-arcade" 
version = "0.1.0"
edition = "2024"
authors = ["Zach Ivanovs <ivanov74@students.rowan.edu>"]
description = "A collection of classic CLI games: Tic-Tac-Toe, Connect Four, Hangman, and Rock Paper Scissors"
license = "MIT" 
repository = "https://github.com/yourusername/rust-cli-arcade"
keywords = ["game", "cli", "arcade"]
categories = ["games", "command-line-utilities"] 

[dependencies]
rand = "0.8"