Skip to content

Commit ee2d84f

Browse files
committed
Version 0.1.0
0 parents  commit ee2d84f

File tree

8 files changed

+3962
-0
lines changed

8 files changed

+3962
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
Cargo.lock

Cargo.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "rusty-duke"
3+
license = "MIT OR Apache-2.0"
4+
version = "0.1.0"
5+
authors = ["Sixten Thames <pm@sith.st>"]
6+
edition = "2021"
7+
8+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9+
10+
[dependencies]
11+
rand = "0.8"
12+
lazy_static = "1.4"
13+
crossterm = "0.23"
14+
strum = "0.24"
15+
strum_macros = "0.24"
16+
log = "0.4"
17+
flexi_logger = "0.22"

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Rusty Duke
2+
3+
Unofficial Rust implementation of the [The Duke](https://boardgamegeek.com/boardgame/36235/duke) boardgame.

src/ai.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod alpha_beta;

0 commit comments

Comments
 (0)