@@ -14,6 +14,46 @@ members = [
1414 " signature" ,
1515]
1616
17+ [workspace .lints .clippy ]
18+ borrow_as_ptr = " warn"
19+ cast_lossless = " warn"
20+ cast_possible_truncation = " warn"
21+ cast_possible_wrap = " warn"
22+ cast_precision_loss = " warn"
23+ cast_sign_loss = " warn"
24+ checked_conversions = " warn"
25+ doc_markdown = " warn"
26+ from_iter_instead_of_collect = " warn"
27+ implicit_saturating_sub = " warn"
28+ manual_assert = " warn"
29+ map_unwrap_or = " warn"
30+ missing_errors_doc = " warn"
31+ missing_panics_doc = " warn"
32+ mod_module_files = " warn"
33+ must_use_candidate = " warn"
34+ needless_range_loop = " allow"
35+ ptr_as_ptr = " warn"
36+ redundant_closure_for_method_calls = " warn"
37+ ref_as_ptr = " warn"
38+ return_self_not_must_use = " warn"
39+ semicolon_if_nothing_returned = " warn"
40+ trivially_copy_pass_by_ref = " warn"
41+ std_instead_of_alloc = " warn"
42+ std_instead_of_core = " warn"
43+ undocumented_unsafe_blocks = " warn"
44+ unnecessary_safety_comment = " warn"
45+ unwrap_in_result = " warn"
46+ unwrap_used = " warn"
47+
48+ [workspace .lints .rust ]
49+ missing_copy_implementations = " warn"
50+ missing_debug_implementations = " warn"
51+ missing_docs = " warn"
52+ trivial_casts = " warn"
53+ trivial_numeric_casts = " warn"
54+ unused_lifetimes = " warn"
55+ unused_qualifications = " warn"
56+
1757[patch .crates-io ]
1858crypto-common = { path = " crypto-common" }
1959digest = { path = " digest" }
0 commit comments