Skip to content

Commit 0be57fc

Browse files
authored
Fix security audit (#189)
Ignores RUSTSEC-2023-0089 until `postcard` updates to `heapless` v0.8
1 parent 5446420 commit 0be57fc

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.cargo/audit.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# https://github.com/RustSec/cargo-audit/blob/master/audit.toml.example
2+
3+
[advisories]
4+
ignore = [
5+
"RUSTSEC-2023-0089", # atomic-polyfill is unmaintained (used by `postcard`)
6+
]

.github/workflows/workspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: dtolnay/rust-toolchain@master
1919
with:
20-
toolchain: stable
20+
toolchain: 1.85.1
2121
components: clippy
2222
- run: cargo clippy --all -- -D warnings
2323

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)