chore: Update from '_rust/main'

This commit is contained in:
Ed Page 2023-09-20 09:46:36 -05:00
commit ace3c101ba
2 changed files with 6 additions and 1 deletions

View file

@ -36,6 +36,10 @@
], ],
minimumReleaseAge: '126 days', // 3 releases * 6 weeks per release * 7 days per week minimumReleaseAge: '126 days', // 3 releases * 6 weeks per release * 7 days per week
internalChecksFilter: 'strict', internalChecksFilter: 'strict',
"extractVersion": "^(?<version>\\d+\\.\\d+)", // Drop the patch version
schedule: [
'* * * * *',
],
}, },
// Goals: // Goals:
// - Rollup safe upgrades to reduce CI runner load // - Rollup safe upgrades to reduce CI runner load

View file

@ -41,6 +41,7 @@ allow = [
"MPL-2.0", "MPL-2.0",
"Unicode-DFS-2016", "Unicode-DFS-2016",
"CC0-1.0", "CC0-1.0",
"ISC",
] ]
# List of explicitly disallowed licenses # List of explicitly disallowed licenses
# See https://spdx.org/licenses/ for list of possible licenses # See https://spdx.org/licenses/ for list of possible licenses
@ -88,7 +89,7 @@ ignore = true
# Lint level for when multiple versions of the same crate are detected # Lint level for when multiple versions of the same crate are detected
multiple-versions = "warn" multiple-versions = "warn"
# Lint level for when a crate version requirement is `*` # Lint level for when a crate version requirement is `*`
wildcards = "deny" wildcards = "warn"
# The graph highlighting used when creating dotgraphs for crates # The graph highlighting used when creating dotgraphs for crates
# with multiple versions # with multiple versions
# * lowest-version - The path to the lowest versioned duplicate is highlighted # * lowest-version - The path to the lowest versioned duplicate is highlighted