-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (41 loc) · 1.94 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "tetris"
version = "0.1.0"
edition = "2021"
default-run = "client"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "tetris"
path = "src/lib.rs"
[[bin]]
name = "client"
path = "src/bin/client.rs"
[dependencies]
macroquad = "0.4"
# futures = "0.3.30"
# for replay files
# protobuf = "3.3.0"
# qt or copperspice (no wasm support or x) for screenshots?
# PC Finder
# tetra-tools = { git = "https://github.com/wirelyre/tetra-tools" }
# Play again a AI bot, rust bot
cold-clear-2 = { git = "https://github.com/MinusKelvin/cold-clear-2" }
# claim with faster move gen https://github.com/citrus610/cold-clear-2 (better performance)
# AI cheese bot, rust bot
# blockfish = { git = "https://github.com/blockfish/blockfish" }
# windows instructions to run program
# https://github.com/libsdl-org/SDL/releases/download/release-2.28.4/SDL2-devel-2.28.4-VC.zip, and find the files libs/x64/{SDL2.dll, SDL2.lib}
# https://github.com/libsdl-org/SDL_ttf/releases/download/release-2.20.2/SDL2_ttf-devel-2.20.2-VC.zip and find the files libs/x64/{SDL2_ttf.dll, SDL2_ttf.lib}
# paste those files in to the root directory of blockfish
# AI bot, c# bot
# zetris = { git = "https://github.com/mat1jaczyyy/Zetris" }
# to setup c# bot
# https://medium.com/@chyyran/calling-c-natively-from-rust-1f92c506289d, follow to setup the above repository to be able to compile c# code to native machine code
# generate c# static / shared libraries, https://learn.microsoft.com/en-us/windows/uwp/dotnet-native/getting-started-with-net-native
# https://github.com/dotnet/corert is superseded by https://github.com/dotnet/runtimelab/tree/feature/NativeAOT
# Misa-mino, c++ bot
# misa-mino = { git = "https://github.com/jezevec10/MisaMinoBot" }
# random fork, with new comments but idk what the commits are https://github.com/iclyxcly/MisaMino
# FrothyPizza, Tetris-Ai
# My fork https://github.com/ziloka/Tetris-AI-FrostyPizza
#