-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (63 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
69 lines (63 loc) · 1.89 KB
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
[package]
name = "random-json"
version = "0.1.2-rc.1"
edition = "2024"
description = "A CLI tool to generate random data from a JSON schema to fill databases."
license = "MIT OR Apache-2.0"
repository = "https://github.com/t-webber/random-json"
authors = ["Tom Webber <t.c.w.webber@gmail.com>"]
keywords = ["random", "data-generation", "fake-data", "json", "cli"]
categories = [
"command-line-interface",
"command-line-utilities",
"config",
"database",
"development-tools",
]
readme = "README.md"
[dependencies]
chrono = { version = "0.4.41", features = [] }
clap = { version = "4.5.42", features = ["derive"] }
color-eyre = "0.6.5"
dialoguer = { version = "0.12.0", features = ["fuzzy-select"] }
rand = "0.9.2"
rand_chacha = "0.9.0"
random-data = "0.1.1"
serde_json = "1.0.142"
[lints.rust]
missing_docs = "deny"
unused = "deny"
warnings = "deny"
deprecated_safe = "deny"
future_incompatible = "deny"
keyword_idents = "deny"
let_underscore = "deny"
nonstandard_style = "deny"
refining_impl_trait = "deny"
rust_2018_compatibility = "deny"
rust_2018_idioms = "deny"
rust_2021_compatibility = "deny"
rust_2024_compatibility = "deny"
[lints.clippy]
all = { level = "deny", priority = -1 }
complexity = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
restriction = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
single_call_fn = "allow"
implicit_return = "allow"
pattern_type_mismatch = "allow"
blanket_clippy_restriction_lints = "allow"
mod_module_files = "allow"
pub_with_shorthand = "allow"
unseparated_literal_suffix = "allow"
question_mark_used = "allow"
missing_inline_in_public_items = "allow"
missing_trait_methods = "allow"
doc_paragraphs_missing_punctuation = "allow"
[profile.dist]
inherits = "release"
lto = "thin"