-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (35 loc) · 926 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
[package]
name = "recon_mcts"
description = "A recombining, concurrent implementation of monte carlo tree search"
version = "0.1.0"
authors = ["trtsl@github.com"]
edition = "2018"
license = "MIT"
readme = "README.md"
[features]
default = ["stable"]
stable = []
test_internals = []
# nightly = []
# two_player = []
# Tests are in a separate workspace so they can be compiled with feature
# `test_internals` by default. Because the tests require a considerable amount
# of setup code which also serves as good api demonstration, this set-up allows
# the tests to have access to private functions (i.e. private when not compiled
# with `test_internals`) but also be included in the `rustdoc` documentation.
[workspace]
members = [
".",
"./tests/*",
]
default-members = [
".",
"./tests/*",
]
[profile.bench]
opt-level = 3
lto = "fat"
incremental = true
debug = 2
debug-assertions = true
overflow-checks = true