Changes On Branch BOGUS
Logged in as anonymous

Changes In Branch BOGUS Excluding Merge-Ins

This is equivalent to a diff from a6a79a67ba to 8271e3e440

2026-04-23
10:03
fix version, fix workflows bump rustls-webpki to 0.103.13 (fixes 2 lowsec issues) leaf check-in: 1c4b702017 user: arcade tags: release, v0.6.5
09:32
fix github workflows a little (by CodeRabbit) closed check-in: 8271e3e440 user: arcade tags: BOGUS
2026-04-18
17:15
bump tgbot and other deps, fixes a few critical issues check-in: a6a79a67ba user: arcade tags: release, v0.6.4
17:13
bump tgbot and other deps, fixes a few critical issues check-in: 9696f3c8c4 user: arcade tags: trunk
2026-03-24
09:20
bump (fixes 2 security issues in aws-lc-sys, aws-lc-fips-sys) check-in: 818f9611ae user: arcade tags: release, v0.6.3

Modified .github/workflows/rust-clippy.yml from [150927a414] to [dcad4eaae1].
1



2

3
4
5
6
7
8
9
10
11
12

13
14
15
16
17
18
19
1
2
3
4

5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

+
+
+
-
+










+







name: rust-ci
on:
  push:
    branches: [ master, release ]
on: [ pull_request ]
  pull_request:

# sccache enable for rust/C builds
env:
  SCCACHE_GHA_ENABLED: "true"
  RUSTC_WRAPPER: "sccache"

jobs:
  rust-ci-run:
    name: Run rust-clippy analyzing and tests
    runs-on: ubuntu-latest
    if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
    permissions:
      contents: read
    steps:
      # SETUP
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2