-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
43 lines (36 loc) · 904 Bytes
/
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
[package]
name = "goban"
version = "0.19.0"
authors = ["Samuel Batissou <[email protected]>"]
readme = "README.md"
description = "Library for Go move generation and Go ruling."
edition = "2021"
license = "MIT"
repository = "https://github.com/Sagebati/goban"
keywords = ["go", "game", "baduk", "igo", "move_generation"]
[badges]
gitlab = { repository = "Sabati/goban" }
maintenance = { status = "actively-developed" }
[features]
history = []
deadstones = ["rand", "oxymcts"]
[dependencies]
bitflags = "1.3"
hash_hasher = "2.0.3"
sgf-parser = "2.6"
arrayvec = "0.7"
rand = { version = "0.8.5", optional = true }
oxymcts = { version = "0.1.0", optional = true }
[dev-dependencies]
criterion = "0.4.0"
rand = "0.8.5"
[profile.bench]
debug = true
debug-assertions = false
[[bench]]
name = "perft"
harness = false
[[bench]]
name = "deadstones"
harness = false
required-features = ["deadstones"]