Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
ignore = [
"RUSTSEC-2025-0140", # gix-date UTF-8 contract issue dependency of cargo-generate
"RUSTSEC-2026-0001", # rkyv undefined behavior on OOM dependency of byte-unit
"RUSTSEC-2026-0037", # quinn-proto DoS - transitive via reqwest/ic-agent, quinn feature not used

# Unmaintained crates (transitive dependencies)
"RUSTSEC-2021-0127", # serde_cbor - dependency of ic-agent/ic-transport-types
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check

toml-format:
name: toml-fmt:required
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0

- name: Install taplo
run: |
curl -fsSL https://github.com/tamasfe/taplo/releases/latest/download/taplo-linux-x86_64.gz \
| gunzip -c > taplo
chmod +x taplo
sudo mv taplo /usr/local/bin/taplo

- name: Check TOML formatting
run: taplo fmt --check

#
# Runs a series of checks to make sure that all the docs
# that need to be generated have been genrated an are up
Expand Down
Loading