forked from lcnr/rubot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (38 loc) · 806 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (38 loc) · 806 Bytes
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
[package]
name = "rubot"
authors = ["lcnr/Bastian Kauschke <bastian_kauschke@hotmail.de>"]
description = "A generic game bot written in Rust"
keywords = ["game", "engine", "bot", "alpha", "beta"]
categories = [ "algorithms", "game-engines" ]
license = "MIT"
exclude = ["fuzz/*", "baseline"]
repository = "https://github.com/lcnr/rubot"
version = "0.3.0"
readme = "README.md"
edition = "2018"
[dependencies]
tapir = "1.0"
[dev-dependencies]
criterion = "0.3.2"
shakmaty = "0.16.3"
[[bench]]
name = "time_complete"
harness = false
[[bench]]
name = "time_partial"
harness = false
[[bench]]
name = "steps_complete"
harness = false
[[bench]]
name = "steps_partial"
harness = false
[[example]]
name = "tic-tac-toe"
test = true
[[example]]
name = "oko"
test = true
[[example]]
name = "chess"
test = true