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 : '126 days' , // 3 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 @@ -35,9 +35,6 @@ debug_assert_with_mut_call = "warn"
35
35
doc_markdown = " warn"
36
36
empty_enum = " warn"
37
37
enum_glob_use = " warn"
38
- exhaustive_enums = " warn"
39
- exhaustive_structs = " warn"
40
- exit = " warn"
41
38
expl_impl_clone_on_copy = " warn"
42
39
explicit_deref_methods = " warn"
43
40
explicit_into_iter_loop = " warn"
@@ -54,7 +51,6 @@ inconsistent_struct_constructor = "warn"
54
51
inefficient_to_string = " warn"
55
52
infinite_loop = " warn"
56
53
invalid_upcast_comparisons = " warn"
57
- items_after_statements = " warn"
58
54
large_digit_groups = " warn"
59
55
large_stack_arrays = " warn"
60
56
large_types_passed_by_value = " warn"
@@ -85,7 +81,6 @@ string_lit_as_bytes = "warn"
85
81
string_to_string = " warn"
86
82
todo = " warn"
87
83
trait_duplication_in_bounds = " warn"
88
- unwrap_used = " warn"
89
84
verbose_file_reads = " warn"
90
85
wildcard_imports = " warn"
91
86
zero_sized_map_values = " warn"
Original file line number Diff line number Diff line change 56
56
//! Or implement our [`LogLevel`] trait to customize the default log level and help output.
57
57
58
58
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
59
- #![ warn( missing_docs) ]
60
59
#![ warn( clippy:: print_stderr) ]
61
60
#![ warn( clippy:: print_stdout) ]
62
61
You can’t perform that action at this time.
0 commit comments