-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (48 loc) · 1.33 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
[package]
name = "fudd"
description = "Fun with poker. Named after that most famous of rabbit hunters."
version = "0.1.9"
authors = ["gaoler <gaoler@electronicpanopticon.com>"]
edition = "2021"
rust-version = "1.65"
license = "GPL-3.0-or-later"
exclude = [".github/workflows/*", "data/*", "examples/*", "logs/*", ".gitignore", "Cargo.lock"]
repository = "https://github.com/ImperialBower/fudd.git"
homepage = "https://github.com/ImperialBower/fudd"
[lib]
name = "fudd"
path = "src/lib.rs"
[dependencies]
cardpack = "0.4.19"
# ckc-rs = { git = "https://github.com/ImperialBower/ckc-rs", branch = "cards" }
ckc-rs = "0.1.14"
crossbeam-channel = "0.5.8"
csv = "1.1.6"
indexmap = "1.8.0"
itertools = "0.10.2"
lazy_static = "1.4.0"
log = "0.4.16"
rand = "0.8.4"
rayon = "1.7.0"
serde = { version = "1.0.155", features = ["derive"] }
strum = { version = "0.24" , features = ["derive"]}
strum_macros = "0.24"
wincounter = "0.1.1"
wyz = "0.6.1"
[dev-dependencies]
clap = { version = "4.1.6", features = ["cargo", "derive", "unicode"] }
criterion = "0.5.1"
doc-comment = "0.3.3"
env_logger = "0.10.0"
num-format = "0.4.0"
rstest = "0.17.0"
serde_json = "1.0.74"
serde_test = "1.0.136"
serde_yaml = "0.9.19"
sled = "0.34.7"
simplelog = { version = "^0.12.0", features = ["paris"] }
text_io = "0.1.9"
thousands = "0.2.0"
[[bench]]
name = "all_benchmark"
harness = false