-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (28 loc) · 761 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (28 loc) · 761 Bytes
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
[workspace]
members = [
"serde_avro_derive",
"serde_avro_derive_macros",
"serde_avro_fast",
]
resolver = "2"
[workspace.lints.rust]
elided_lifetimes_in_paths = "warn"
mismatched_lifetime_syntaxes = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unused-lifetimes = "warn"
[workspace.lints.clippy]
cast_lossless = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
explicit_auto_deref = "allow"
filter_map_identity = "allow"
large_enum_variant = "allow"
mem_replace_with_default = "allow"
missing_safety_doc = "deny"
needless_lifetimes = "allow"
single_match = "allow"
tabs_in_doc_comments = "allow"
undocumented_unsafe_blocks = "deny"
unwrap_or_default = "allow"