Skip to content

Commit 9bb10d2

Browse files
authored
v2.2 (#62)
- Update solana crates to v2.2 - Update a few other crates - Remove unused jito-solana feature gates - Update to right toolchain - Some linting
1 parent 14f92d6 commit 9bb10d2

File tree

14 files changed

+2559
-680
lines changed

14 files changed

+2559
-680
lines changed

.github/workflows/ci.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ on:
1313
- 'v*.*'
1414

1515
jobs:
16+
security_audit:
17+
name: security_audit
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
submodules: recursive
23+
- name: Install cargo-audit from crates.io
24+
uses: baptiste0928/cargo-install@v3
25+
with:
26+
crate: cargo-audit
27+
- name: Run cargo audit
28+
run: |
29+
cargo audit \
30+
--ignore RUSTSEC-2022-0093 \
31+
--ignore RUSTSEC-2024-0421 \
32+
--ignore RUSTSEC-2024-0344 \
33+
--ignore RUSTSEC-2024-0376 \
34+
--ignore RUSTSEC-2025-0009
35+
1636
lint:
1737
name: lint
1838
runs-on: ubuntu-latest
@@ -30,6 +50,7 @@ jobs:
3050
run: cargo sort --workspace --check
3151
- name: run clippy
3252
run: cargo clippy --all-features -- -D clippy::all
53+
- run: cargo fmt --all --check
3354

3455
build:
3556
name: build

0 commit comments

Comments
 (0)