-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) · 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (66 loc) · 1.61 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
70
71
[workspace]
members = [
"crates/vouched",
"crates/vouched-core",
"crates/vouched-derive",
]
resolver = "3"
[workspace.package]
edition = "2024"
keywords = [
"derive",
"newtype",
"proc-macro",
"validation",
]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/yuly3/vouched"
rust-version = "1.86"
version = "0.3.0"
[workspace.dependencies]
proc-macro-crate = "3.5"
proc-macro2 = "1.0"
quote = "1.0"
serde_json = "1.0"
syn = { version = "2.0", features = [
"full",
] }
trybuild = "1.0"
valuable = { version = "0.1", default-features = false, features = [
"alloc",
] }
valuable-serde = "0.1"
vouched-core = { path = "crates/vouched-core", version = "0.3.0" }
vouched-derive = { path = "crates/vouched-derive", version = "0.3.0" }
[workspace.lints.clippy]
allow_attributes_without_reason = "deny"
arithmetic_side_effects = "deny"
as_conversions = "deny"
assigning_clones = "deny"
bool_to_int_with_if = "deny"
branches_sharing_code = "deny"
equatable_if_let = "deny"
expect_used = "deny"
filter_map_next = "deny"
imprecise_flops = "deny"
lossy_float_literal = "deny"
match_wildcard_for_single_variants = "deny"
needless_continue = "deny"
needless_pass_by_ref_mut = "deny"
needless_pass_by_value = "deny"
option_option = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
ref_option = "deny"
rest_pat_in_fully_bound_structs = "deny"
str_to_string = "deny"
suboptimal_flops = "deny"
trivially_copy_pass_by_ref = "deny"
uninlined_format_args = "deny"
unnested_or_patterns = "deny"
unused_self = "deny"
unwrap_used = "deny"
use_self = "deny"
verbose_file_reads = "deny"