Skip to content

Commit

Permalink
Merge pull request #3 from quartiq/feature/audit-update
Browse files Browse the repository at this point in the history
Updating heapless, adding audit CI check
  • Loading branch information
ryan-summers authored Mar 4, 2021
2 parents ea665e3 + fb73192 commit d05120c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ jobs:
with:
command: doc

audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cargo Audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

compile:
runs-on: ubuntu-latest
strategy:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
This document describes the changes to smoltcp-nal between releases.

# Unreleased
* Upgraded to 0.6.1 of heapless to address security vulnerability

## Version 0.1.0
Version 0.1.0 was published on 2021-02-17
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories = ["network-programming", "no-std"]
repository = "https://github.com/quartiq/smoltcp-nal.git"

[dependencies]
heapless = "0.5"
heapless = ">=0.6.1"
embedded-nal = "0.1"

[dependencies.smoltcp]
Expand Down

0 comments on commit d05120c

Please sign in to comment.