Skip to content

Commit aa16c8c

Browse files
committed
Merge branch 'corpus'
2 parents 2fc0fbf + 2ab69c6 commit aa16c8c

File tree

109 files changed

+2003
-437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+2003
-437
lines changed

.cargo/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
rustflags = [
33
# Rustc lints
44
# "-W", "warning_name"
5-
# "-A", "warning_name"
5+
"-A", "clippy::let_unit_value", # in 'small' builds this triggers as the `span!` macro yields `let x = ()`. No way to prevent it in macro apparently.
66

77
# Clippy lints
88
"-W", "clippy::cloned_instead_of_copied",

.github/workflows/msrv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- uses: actions/checkout@v3
23-
- uses: dtolnay/rust-toolchain@1.64.0 # dictated by `windows` crates effectively, IMPORTANT: adjust etc/msrv-badge.svg as well
23+
- uses: dtolnay/rust-toolchain@1.65.0 # dictated by `windows` crates effectively, IMPORTANT: adjust etc/msrv-badge.svg as well
2424
- uses: extractions/setup-just@v1
2525
- run: just ci-check-msrv

0 commit comments

Comments
 (0)