From 8037a36f1dcf01caae42bf072c9984862c43ad64 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 01:53:29 +0000 Subject: [PATCH 1/2] chore(deps): update rust crate ctor to v1.0.2 --- Cargo.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a99bd9..2747df7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -392,9 +392,9 @@ dependencies = [ [[package]] name = "ctor" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7335955a5f85f95f3188623240e081e7b2059a8ad1bae68944b7cfdd718fb10" +checksum = "5449af32ecd0738fb1be3f9faa3c10da8509044fed757aaa2bc1c16f9a74e0c5" dependencies = [ "link-section", "linktime-proc-macro", @@ -858,9 +858,9 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "link-section" -version = "0.13.1" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2c24837c4fd5ab6a31d64133eae954f5199247523cf29586117e85245c0dd3" +checksum = "4641b91711debb59c61b07eb5e30521ed6d9e2bdd9fd04f934e7da3a5bc386d4" [[package]] name = "linktime-proc-macro" @@ -1240,7 +1240,7 @@ dependencies = [ "clap_complete", "clap_mangen", "codspeed-divan-compat", - "ctor 1.0.1", + "ctor 1.0.2", "fancy-regex", "hex", "libc", From 64fa27a59d8efd042a5609a566acf12e4772722c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 01:53:37 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/workflows/GnuComment.yml | 12 ++++++------ .github/workflows/GnuTests.yml | 2 +- .github/workflows/ignore-intermittent.txt | 2 +- Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index 016d6c4..909e2dd 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -32,12 +32,12 @@ jobs: var matchArtifact = artifacts.data.artifacts.filter((artifact) => { return artifact.name == "comment" })[0]; - + if (!matchArtifact) { console.log('No comment artifact found'); return; } - + var download = await github.rest.actions.downloadArtifact({ owner: context.repo.owner, repo: context.repo.repo, @@ -54,7 +54,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} script: | var fs = require('fs'); - + // Check if files exist if (!fs.existsSync('./NR')) { console.log('No NR file found, skipping comment'); @@ -64,10 +64,10 @@ jobs: console.log('No result.txt file found, skipping comment'); return; } - + var issue_number = Number(fs.readFileSync('./NR')); var content = fs.readFileSync('./result.txt'); - + if (content.toString().trim().length > 7) { // 7 because we have backquote + \n await github.rest.issues.createComment({ owner: context.repo.owner, @@ -77,4 +77,4 @@ jobs: }); } else { console.log('Comment content too short, skipping'); - } \ No newline at end of file + } diff --git a/.github/workflows/GnuTests.yml b/.github/workflows/GnuTests.yml index 38077e3..2543633 100644 --- a/.github/workflows/GnuTests.yml +++ b/.github/workflows/GnuTests.yml @@ -261,7 +261,7 @@ jobs: echo "ONLY_INTERMITTENT=true" >> $GITHUB_ENV echo "::notice ::No new test failures detected" fi - + - name: Upload comparison log (for GnuComment workflow) if: success() || failure() uses: actions/upload-artifact@v7 diff --git a/.github/workflows/ignore-intermittent.txt b/.github/workflows/ignore-intermittent.txt index 9e812e9..7889f3d 100644 --- a/.github/workflows/ignore-intermittent.txt +++ b/.github/workflows/ignore-intermittent.txt @@ -4,4 +4,4 @@ # Add test names that are known to be flaky or environment-dependent # Example: # basic_substitution -# line_address_test \ No newline at end of file +# line_address_test diff --git a/Cargo.toml b/Cargo.toml index d0db7f4..1ac1b3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -111,7 +111,7 @@ harness = false lto = true panic = "abort" # should be dropped to 1 for binary size without performance drop -codegen-units = 7 +codegen-units = 7 # A release-like profile that is as small as possible. [profile.release-small]