Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix RUSTSEC-2020-0077 by replacing memmap with memmap2 #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Bump pretty_assertions to a more recent version
This fixes an audit warning due to the old pretty_assertions depending
on an unmaintained and apparently security vulnerable package.

By simply updating pretty_assertions to the stable 1.0 release, that is
fixed neatly.
Spindel committed Jan 5, 2022
commit 1b24a1ff38d84b19ea551d878bd38cfd3b00e9f3
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,4 +17,4 @@ log = "0.4"

[dev-dependencies]
tempfile = "3.1"
pretty_assertions = "0.6"
pretty_assertions = "1"