-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (37 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
[package]
name = "poker_solver"
version = "0.1.0"
authors = ["Kyle Murphy <kwmurph2@asu.edu>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"information_abstraction",
"server",
"client"
]
[target.'cfg(any(windows, unix))']
rustflags = ["-C target-cpu=native"]
[profile.release]
lto = true
codegen-units = 1
# Includes debug information in release builds. Necessary for profiling. Does not
# slow down the executable.
debug = true
opt-level = 3
[dependencies]
rust_poker = { version = "0.1.13", features = ["indexer"] }
rand = { version = "0.7.3", features = [ "small_rng" ] }
# concurrency
crossbeam = "0.7.3"
colored = "2.0.0"
# for handing asynchronous runtime and server
bytes = "0.6.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio-util = { version = "0.5.0", features = ["full"] }
tokio = { version = "0.3.0", features = ["full", "tracing"] }
futures = "0.3.0"
clap = "3.0.0-beta.2"
ndarray = { version = "0.13.1", features = ["rayon"] }
thiserror = "1.0.24"