-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
87 lines (82 loc) · 2.18 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
[package]
name = "mockd"
version = "0.4.36"
edition = "2021"
authors = ["jerusdp <[email protected]>"]
rust-version = "1.61"
description = "Fake data generator library with 130+ functions"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jerus-org/mockd"
keywords = ["fake", "data", "random", "generator", "faker"]
include = ["**/*.rs", "Cargo.toml", "README.md", "LICENSE", "CHANGES.md"]
[features]
default = ["file"]
all = [
"address",
"animal",
"company",
"beer",
"colour",
"contact",
"currency",
"datetime",
"file",
"generator",
"hacker",
"hipster",
"image",
"internet",
"job",
"language",
"log-level",
"misc",
"name",
"password",
"payment",
"person",
"random-bool",
"status-code",
"unique",
"user-agent",
"vehicle",
"words",
]
address = ["misc", "company", "image", "job", "name"]
animal = ["misc"]
beer = ["misc"]
company = ["misc", "image", "job", "name"]
colour = ["misc"]
contact = ["misc", "company", "image", "internet", "job"]
currency = ["misc", "libmath"]
datetime = ["misc", "chrono"]
file = ["misc"]
generator = ["misc", "company", "hacker", "image", "job", "person"]
hacker = ["misc", "company", "generator", "image", "job", "contact"]
hipster = ["misc", "image", "words"]
image = []
internet = ["misc", "company", "image", "job", "person"]
job = ["misc", "company", "image"]
language = ["misc"]
log-level = ["misc"]
misc = ["simplerand"]
name = ["misc", "company", "image", "job", "person"]
password = ["misc"]
payment = ["misc", "chrono"]
person = ["misc", "company", "image", "job", "payment", "contact", "address"]
random-bool = ["misc"]
status-code = ["misc"]
unique = ["misc", "chrono", "uuid"]
user-agent = ["misc", "datetime"]
vehicle = ["misc", "chrono"]
words = ["misc", "company", "hipster", "image", "job", "name"]
[dependencies]
libmath = { version = "0.2.1", optional = true }
chrono = { version = "0.4.39", optional = true }
uuid = { version = "1.12.1", features = ["v1", "v4"], optional = true }
simplerand = { version = "1.5.1", optional = true }
[dev-dependencies]
rand = "0.8.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]