forked from ori-community/wotw-seedgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 871 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 = "seedgen"
description = "Command line interface to generate seeds for the Ori and the Will of the Wisps Randomizer"
version = "1.0.10"
authors = ["Sirius Ashling <[email protected]>", "Rikhardur Bjarni Einarsson <[email protected]>"]
edition = "2018"
repository = "https://github.com/sparkle-preference/OriWotwRandomizerClient/tree/master/projects/SeedGenCli"
publish = false
[dependencies]
atty = "0.2.14"
bugsalot = "0.1.4"
structopt = "0.3.13"
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
csv = "1.1"
rustc-hash = "1.1.0"
rand = { version = "0.8.3", features = ["std_rng", "alloc"] }
rand_seeder = "0.2.2"
log = "0.4"
log4rs = "1.0.0"
ansi_term = "0.12.1"
smallvec = "1.6.1"
regex = "1"
open = "2"
num_enum = "0.5"
decorum = "0.3"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench"
harness = false