-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (46 loc) · 1.08 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
52
53
54
55
56
57
58
[package]
name = "fchess"
version = "0.1.0"
authors = ["joajfreitas <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num = "0.4"
num-derive = "0.3"
num-traits = "0.2"
rustyline = "10"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
clap = { version = "4.2.1", features = ["derive"] }
[dependencies.uuid]
version = "1.3.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dev-dependencies]
rstest = "0.17.0"
[lib]
name = "fchess"
path = "src/lib.rs"
[[bin]]
name = "uci"
path = "bin/uci.rs"
[[bin]]
name = "test_apply_move"
path = "bin/test_apply_move.rs"
[[bin]]
name = "test_movegen"
path = "bin/test_movegen.rs"
[[bin]]
name = "cli"
path = "bin/cli.rs"
[[bin]]
name = "book"
path = "bin/book.rs"
[[bin]]
name = "fen_diagram"
path = "bin/fen_diagram.rs"