-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 864 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 = "smartchess"
version = "0.0.0"
edition = "2021"
[lib]
name = "encoder"
path = "src/lib.rs"
crate-type = ["cdylib"]
[[bin]]
name = "smartchess"
path = "src/main.rs"
[[bin]]
name = "play"
path = "src/play.rs"
[[bin]]
name = "debug"
path = "src/debug.rs"
[dependencies]
pyo3 = { version = "0.20.0", features = ["auto-initialize"] }
numpy = "0.20.0"
ndarray = "0.15.6"
rand = "0.8.5"
rand_distr = "0.4.3"
recursive_reference = "0.3.0"
serde = { version = "1.0", features = ["std", "derive"] }
serde_json = "1.0"
clap = { version = "4.4.11", features = ["derive"] }
backtrace-on-stack-overflow = "0.3.0"
cached = "0.46.1"
uci = "0.1.3"
string-builder = "0.2.0"
tch = "0.16.0"
ort = "2.0.0-alpha.4"
tracing-subscriber = { version = "0.3", features = [ "env-filter", "fmt" ] }
libloading = "0.8"
once_cell = "1.19.0"
[profile.release]
debug = true