-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (44 loc) · 770 Bytes
/
Cargo.toml
File metadata and controls
53 lines (44 loc) · 770 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
48
49
50
51
52
53
[package]
name = "my-strategy"
version = "1.0.0"
edition = "2018"
[lib]
name = "my_strategy"
edition = "2018"
[[bin]]
name = "repeater"
edition = "2018"
path = "src/repeater.rs"
[[bin]]
name = "simulation_tool"
edition = "2018"
path = "src/simulation_tool.rs"
[dependencies]
log = "0.4.6"
env_logger = "0.6.0"
serde = "1"
serde_json = "1"
serde_derive = "1"
criterion = "0.2.5"
[features]
enable_log = []
enable_stats = []
enable_render = []
enable_time = []
enable_profiler = []
use_test_strategy = []
use_limited_forward = []
use_single_goalkeeper = []
disable_output = []
read_config = []
[[bench]]
name = "simulator"
harness = false
[[bench]]
name = "arena"
harness = false
[[bench]]
name = "my_strategy_impl"
harness = false
[profile.release]
debug = true