-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 816 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
[package]
name = "freebj"
version = "1.1.3"
authors = ["Kévin Lesénéchal <kevin.lesenechal@gmail.com>"]
description = "Blackjack strategy simulator"
edition = "2018"
license = "MIT"
homepage = "https://freebj.lesenechal.fr/"
repository = "https://github.com/kevin-lesenechal/freebj"
categories = ["science", "simulation"]
keywords = ["blackjack", "card-counting"]
[lib]
name = "freebj"
path = "src/lib.rs"
[[bin]]
name = "freebj"
path = "src/main.rs"
[profile.release]
lto = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "~2.34.0"
arrayvec = "0.7.2"
bitflags = "1.2.1"
rand = { version = "0.8.5", features = ["small_rng"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
crossbeam = "0.8.1"
regex = "1.4.2"