-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (42 loc) · 1.3 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
[package]
name = "zero_sum"
version = "1.2.0"
authors = ["Chris Foster <[email protected]>"]
license = "GPL-3.0"
description = "An analysis engine for zero-sum games with game implementations."
repository = "https://github.com/cdbfoster/zero_sum"
readme = "README.md"
documentation = "https://cdbfoster.github.io/doc/zero_sum"
keywords = ["zero-sum", "game", "chess", "tak", "tic-tac-toe"]
[features]
with_all = ["with_tak", "with_tak_ann", "with_tic_tac_toe"]
with_tak = ["lazy_static", "rand"]
with_tak_ann = ["with_tak", "blas", "rusqlite"]
with_tic_tac_toe = []
[dependencies]
blas = { version = "0.15.3", optional = true }
fnv = "1.0"
lazy_static = { version = "0.2", optional = true }
rand = { version = "0.3", optional = true }
rusqlite = { version = "0.10", optional = true }
[[bin]]
name = "tak_ann_bootstrap_evaluator"
required-features = ["with_tak_ann"]
[[bin]]
name = "tak_ann_playtest"
required-features = ["with_tak_ann"]
[[bin]]
name = "tak_ann_sample_evaluations"
required-features = ["with_tak_ann"]
[[bin]]
name = "tak_ann_train_evaluator"
required-features = ["with_tak_ann"]
[[bin]]
name = "tak_ann_training_positions"
required-features = ["with_tak_ann"]
[[example]]
name = "tak_opening"
required-features = ["with_tak"]
[[example]]
name = "tic_tac_toe"
required-features = ["with_tic_tac_toe"]