-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,6 +254,26 @@ who = "Jack Grigg <[email protected]>" | |
criteria = "safe-to-deploy" | ||
delta = "2.11.2 -> 2.12.0" | ||
|
||
[[audits.nonempty]] | ||
who = "Kris Nuttycombe <[email protected]>" | ||
criteria = "safe-to-deploy" | ||
version = "0.11.0" | ||
notes = """ | ||
Additional use of `unsafe` to wrap `NonZeroUsize::new_unchecked`; in both cases | ||
the argument to this method is `<Vec length or capacity> + 1`; in general this | ||
is safe with the exception that if an existing `Vec` has length or capacity | ||
`usize::MAX` this could wrap into zero; it would be better to use the safe | ||
operation and then `expect` to generate a panic, rather than risk undefined | ||
behavior. | ||
Additions are: | ||
- no_std support | ||
- sorting | ||
- `nonzero` module (just wrappers | ||
- `serde` support | ||
- `nonempty macro` (trivial, verified safe) | ||
""" | ||
|
||
[[audits.num-bigint]] | ||
who = "Daira-Emma Hopwood <[email protected]>" | ||
criteria = "safe-to-deploy" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters