Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jill
Arti
Commits
c4710ce9
Commit
c4710ce9
authored
3 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Remove chrono exception from cargo_audit.sh
parent
968ffa3d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
maint/cargo_audit.sh
+17
-13
17 additions, 13 deletions
maint/cargo_audit.sh
with
17 additions
and
13 deletions
maint/cargo_audit.sh
+
17
−
13
View file @
c4710ce9
...
...
@@ -11,19 +11,6 @@
# If you add anything to this section, make sure to add a comment
# explaining why it's safe to do so.
IGNORE
=(
# This vulnerability affects the `chrono` crate: it uses
# `localtime_r()`, which is not thread-safe if anybody calls
# `setenv()`.
#
# This is concerning! What makes it not disastrous is:
# * We don't use chrono for any local times in Arti: only Utc.
# * We don't modify the environment.
#
# There is no unaffected version of chrono yet.
#
# Fortunately (?), the whole Rust ecosystem is currently freaking
# out about chrono, so we can hope there's a solution before too long.
--ignore
RUSTSEC-2020-0159
)
cargo audit
-D
warnings
"
${
IGNORE
[@]
}
"
...
...
@@ -68,6 +55,23 @@ OBSOLETE_IGNORE=(
# (PR: https://github.com/rusqlite/rusqlite/pull/1031 )
# * Stop using the `chrono` feature on rusqlite, and do our date
# conversions in `tor-dirmgr` manually.
#
# Eventual resolution: we migrated to use time 0.3 instead of chrono.
--ignore
RUSTSEC-2020-0071
# This vulnerability affects the `chrono` crate: it uses
# `localtime_r()`, which is not thread-safe if anybody calls
# `setenv()`.
#
# This is concerning! What makes it not disastrous is:
# * We don't use chrono for any local times in Arti: only Utc.
# * We don't modify the environment.
#
# There is no unaffected version of chrono yet.
#
# Fortunately (?), the whole Rust ecosystem is currently freaking
# out about chrono, so we can hope there's a solution before too long.
#
# Eventual resolution: we migrated to use time 0.3 instead of chrono.
--ignore
RUSTSEC-2020-0159
)
_
=
"
${
OBSOLETE_IGNORE
[0]
}
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment