File tree 4 files changed +1
-40
lines changed
4 files changed +1
-40
lines changed Original file line number Diff line number Diff line change 1
- warn-on-all-wildcard-imports = true
2
1
allow-print-in-tests = true
3
2
allow-expect-in-tests = true
4
3
allow-unwrap-in-tests = true
Original file line number Diff line number Diff line change 7
7
configMigration : true ,
8
8
dependencyDashboard : true ,
9
9
customManagers : [
10
- {
11
- customType : 'regex' ,
12
- fileMatch : [
13
- '^rust-toolchain\\.toml$' ,
14
- 'Cargo.toml$' ,
15
- 'clippy.toml$' ,
16
- '\\.clippy.toml$' ,
17
- '^\\.github/workflows/ci.yml$' ,
18
- '^\\.github/workflows/rust-next.yml$' ,
19
- ] ,
20
- matchStrings : [
21
- 'MSRV.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)' ,
22
- '(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?MSRV' ,
23
- ] ,
24
- depNameTemplate : 'MSRV' ,
25
- packageNameTemplate : 'rust-lang/rust' ,
26
- datasourceTemplate : 'github-releases' ,
27
- } ,
28
10
{
29
11
customType : 'regex' ,
30
12
fileMatch : [
45
27
} ,
46
28
] ,
47
29
packageRules : [
48
- {
49
- commitMessageTopic : 'MSRV' ,
50
- matchManagers : [
51
- 'custom.regex' ,
52
- ] ,
53
- matchPackageNames : [
54
- 'MSRV' ,
55
- ] ,
56
- minimumReleaseAge : '840 days' , // 20 releases * 6 weeks per release * 7 days per week
57
- internalChecksFilter : 'strict' ,
58
- extractVersion : '^(?<version>\\d+\\.\\d+)' , // Drop the patch version
59
- schedule : [
60
- '* * * * *' ,
61
- ] ,
62
- } ,
63
30
{
64
31
commitMessageTopic : 'Rust Stable' ,
65
32
matchManagers : [
72
39
schedule : [
73
40
'* * * * *' ,
74
41
] ,
42
+ automerge : true ,
75
43
} ,
76
44
// Goals:
77
45
// - Keep version reqs low, ignoring compatible normal/build dependencies
Original file line number Diff line number Diff line change @@ -37,9 +37,6 @@ debug_assert_with_mut_call = "warn"
37
37
doc_markdown = " warn"
38
38
empty_enum = " warn"
39
39
enum_glob_use = " warn"
40
- exhaustive_enums = " warn"
41
- exhaustive_structs = " warn"
42
- exit = " warn"
43
40
expl_impl_clone_on_copy = " warn"
44
41
explicit_deref_methods = " warn"
45
42
explicit_into_iter_loop = " warn"
@@ -56,7 +53,6 @@ inconsistent_struct_constructor = "warn"
56
53
inefficient_to_string = " warn"
57
54
infinite_loop = " warn"
58
55
invalid_upcast_comparisons = " warn"
59
- items_after_statements = " warn"
60
56
large_digit_groups = " warn"
61
57
large_stack_arrays = " warn"
62
58
large_types_passed_by_value = " warn"
@@ -87,7 +83,6 @@ string_lit_as_bytes = "warn"
87
83
string_to_string = " warn"
88
84
todo = " warn"
89
85
trait_duplication_in_bounds = " warn"
90
- unwrap_used = " warn"
91
86
verbose_file_reads = " warn"
92
87
wildcard_imports = " warn"
93
88
zero_sized_map_values = " warn"
Original file line number Diff line number Diff line change 261
261
//! [log-crate-url]: https://docs.rs/log
262
262
263
263
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
264
- #![ warn( missing_docs) ]
265
264
#![ warn( clippy:: print_stderr) ]
266
265
#![ warn( clippy:: print_stdout) ]
267
266
You can’t perform that action at this time.
0 commit comments