-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 893 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
[package]
name = "roll"
version = "0.1.0"
description = "An advanced dice roller and probability calculator."
authors = ["Taylor Everding <[email protected]>"]
license = "MIT"
repository = "[email protected]:taylor1791/dice.git"
homepage = "https://github.com/taylor1791/dice"
edition = "2021"
[dependencies]
anyhow = "1"
atty = "0.2"
ibig = "0.3"
clap = { version = "3.2", features = ["derive", "wrap_help"] }
env_logger = "0.9"
human-panic = "1"
log = "0.4"
nom = "7"
num-traits = "0.2"
owo-colors = { version = "3.4.0", features = ["supports-colors"] }
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
terminal_size = "0.2.1"
[dev-dependencies]
assert_cmd = "2"
criterion = { version = "0.3", features = ["html_reports"] }
float_eq = "1"
quickcheck = { version = "1" }
quickcheck_macros = "1"
[[bench]]
name = "combinatorics"
harness = false