-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (35 loc) · 805 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
44
[package]
name = "tsumego-solver"
version = "0.1.2"
authors = ["Cameron Martin <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sgf-parser = "2.4.0"
petgraph = "0.5.0"
cursive = { version = "0.14", default-features = false, features = ["crossterm-backend"] }
clap = "2.33.0"
rand = { version = "0.7", features = ["small_rng"] }
pest = "2.1"
pest_derive = "2.1"
[dev-dependencies]
criterion = "0.3.1"
quickcheck = "0.9"
quickcheck_macros = "0.9"
insta = "0.16.0"
[lib]
bench = false
[[bin]]
name = "cli"
path = "src/bin/cli/main.rs"
bench = false
[[bench]]
name = "main"
harness = false
[[bench]]
name = "gotools"
harness = false
[profile.release]
lto = true
[profile.bench]
lto = true