File tree Expand file tree Collapse file tree 4 files changed +1
-40
lines changed Expand file tree Collapse file tree 4 files changed +1
-40
lines changed Original file line number Diff line number Diff line change 1- warn-on-all-wildcard-imports = true
21allow-print-in-tests = true
32allow-expect-in-tests = true
43allow-unwrap-in-tests = true
Original file line number Diff line number Diff line change 77 configMigration : true ,
88 dependencyDashboard : true ,
99 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- } ,
2810 {
2911 customType : 'regex' ,
3012 fileMatch : [
4527 } ,
4628 ] ,
4729 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- } ,
6330 {
6431 commitMessageTopic : 'Rust Stable' ,
6532 matchManagers : [
7239 schedule : [
7340 '* * * * *' ,
7441 ] ,
42+ automerge : true ,
7543 } ,
7644 // Goals:
7745 // - 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"
3737doc_markdown = " warn"
3838empty_enum = " warn"
3939enum_glob_use = " warn"
40- exhaustive_enums = " warn"
41- exhaustive_structs = " warn"
42- exit = " warn"
4340expl_impl_clone_on_copy = " warn"
4441explicit_deref_methods = " warn"
4542explicit_into_iter_loop = " warn"
@@ -56,7 +53,6 @@ inconsistent_struct_constructor = "warn"
5653inefficient_to_string = " warn"
5754infinite_loop = " warn"
5855invalid_upcast_comparisons = " warn"
59- items_after_statements = " warn"
6056large_digit_groups = " warn"
6157large_stack_arrays = " warn"
6258large_types_passed_by_value = " warn"
@@ -87,7 +83,6 @@ string_lit_as_bytes = "warn"
8783string_to_string = " warn"
8884todo = " warn"
8985trait_duplication_in_bounds = " warn"
90- unwrap_used = " warn"
9186verbose_file_reads = " warn"
9287wildcard_imports = " warn"
9388zero_sized_map_values = " warn"
Original file line number Diff line number Diff line change 261261//! [log-crate-url]: https://docs.rs/log
262262
263263#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
264- #![ warn( missing_docs) ]
265264#![ warn( clippy:: print_stderr) ]
266265#![ warn( clippy:: print_stdout) ]
267266
You can’t perform that action at this time.
0 commit comments