-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
103 lines (87 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "warlocks-cauldron"
version = "0.26.10"
edition = "2021"
description = "🦀 Fake Data Generator written in Rust - fully inspired by https://mimesis.name 🐍"
repository = "https://github.com/hack-wrench/warlocks-cauldron/"
homepage = "https://github.com/hack-wrench/warlocks-cauldron/"
authors = ["H-W <github.com/hack-wrench>"]
keywords = ["testing", "mock", "faker", "random", "generator"]
readme = "README.md"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
valued-enums = "1.1.8"
counter = "0.5.7"
itertools = "0.10.5"
lazy_static = "1.4.0"
serde_json = "1.0.91"
num = "0.4.0"
rand = "0.8.5"
md-5 = "0.10.5"
sha1 = "0.10.5"
sha2 = "0.10.6"
blake2 = "0.10.6"
base64 = "0.20.0"
hex = "0.4.3"
chrono-tz = "0.8.1"
chrono = "0.4.23"
urlencoding = "2.1.2"
ipaddress = "0.1.2"
regex = "1.7.0"
luhn = "1.0.1"
[dependencies.reqwest]
version = "0.11.13"
features = ["blocking"]
[dependencies.uuid]
version = "1.2.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[dependencies.serde]
version = "1.0.151"
features = ["derive"]
[features]
default = ["all_locales"]
all_locales = [
"cs", "da", "de", "de-at", "de-ch", "el", "en", "en-au",
"en-ca", "en-gb", "es", "es-mx", "et", "fa", "fi", "fr",
"hu", "is", "it", "ja", "kk", "ko", "nl", "nl-be", "no",
"pl", "pt", "pt-br", "ru", "sk", "sv", "tr", "uk", "zh",
]
cs = []
da = []
de = []
de-at = []
de-ch = []
el = []
en = []
en-au = []
en-ca = []
en-gb = []
es = []
es-mx = []
et = []
fa = []
fi = []
fr = []
hu = []
is = []
it = []
ja = []
kk = []
ko = []
nl = []
nl-be = []
no = []
pl = []
pt = []
pt-br = []
ru = []
sk = []
sv = []
tr = []
uk = []
zh = []