Skip to content

Commit 53accb7

Browse files
committed
Reformat audit files to match cargo-vet 0.10.2 format
1 parent 4565ea4 commit 53accb7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

supply-chain/audits.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ who = "Jack Grigg <thestr4d@gmail.com>"
99
criteria = "safe-to-deploy"
1010
delta = "0.16.1 -> 0.16.0"
1111
notes = """
12-
Downgrade lowers MSRV. Change to `unsafe` code is to remove a `target_os = \"nto\"`
12+
Downgrade lowers MSRV. Change to `unsafe` code is to remove a `target_os = "nto"`
1313
specific handler, so this will fail to run on QNX due to missing `cfmakeraw`; on
1414
other platforms there is no change.
1515
"""

supply-chain/imports.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ delta = "0.3.27 -> 0.3.31"
508508
who = "Pat Hickey <pat@moreproductive.org>"
509509
criteria = "safe-to-deploy"
510510
delta = "0.3.27 -> 0.3.31"
511-
notes = "New waker_ref module contains \"FIXME: panics on Arc::clone / refcount changes could wreak havoc...\" comment, but this corner case feels low risk."
511+
notes = 'New waker_ref module contains "FIXME: panics on Arc::clone / refcount changes could wreak havoc..." comment, but this corner case feels low risk.'
512512

513513
[[audits.bytecode-alliance.audits.gimli]]
514514
who = "Alex Crichton <alex@alexcrichton.com>"
@@ -975,7 +975,7 @@ aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_p
975975
who = "Lukasz Anforowicz <lukasza@chromium.org>"
976976
criteria = "safe-to-deploy"
977977
delta = "1.14.0 -> 1.15.0"
978-
notes = "The delta in `lib.rs` only tweaks doc comments and `#[cfg(feature = \"std\")]`."
978+
notes = 'The delta in `lib.rs` only tweaks doc comments and `#[cfg(feature = "std")]`.'
979979
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
980980

981981
[[audits.google.audits.equivalent]]
@@ -1282,8 +1282,8 @@ who = "Lukasz Anforowicz <lukasza@chromium.org>"
12821282
criteria = "safe-to-deploy"
12831283
version = "1.0.78"
12841284
notes = """
1285-
Grepped for \"crypt\", \"cipher\", \"fs\", \"net\" - there were no hits
1286-
(except for a benign \"fs\" hit in a doc comment)
1285+
Grepped for "crypt", "cipher", "fs", "net" - there were no hits
1286+
(except for a benign "fs" hit in a doc comment)
12871287

12881288
Notes from the `unsafe` review can be found in https://crrev.com/c/5385745.
12891289
"""
@@ -1401,8 +1401,8 @@ who = "Lukasz Anforowicz <lukasza@chromium.org>"
14011401
criteria = "safe-to-deploy"
14021402
version = "1.0.35"
14031403
notes = """
1404-
Grepped for \"unsafe\", \"crypt\", \"cipher\", \"fs\", \"net\" - there were no hits
1405-
(except for benign \"net\" hit in tests and \"fs\" hit in README.md)
1404+
Grepped for "unsafe", "crypt", "cipher", "fs", "net" - there were no hits
1405+
(except for benign "net" hit in tests and "fs" hit in README.md)
14061406
"""
14071407
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
14081408

@@ -1480,7 +1480,7 @@ and there were no hits except for:
14801480
* Using `unsafe` in a string:
14811481

14821482
```
1483-
src/constfn.rs: \"unsafe\" => Qualifiers::Unsafe,
1483+
src/constfn.rs: "unsafe" => Qualifiers::Unsafe,
14841484
```
14851485

14861486
* Using `std::fs` in `build/build.rs` to write `${OUT_DIR}/version.expr`
@@ -1668,7 +1668,7 @@ aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_p
16681668
who = "Lukasz Anforowicz <lukasza@chromium.org>"
16691669
criteria = "safe-to-deploy"
16701670
version = "1.0.197"
1671-
notes = "Grepped for \"unsafe\", \"crypt\", \"cipher\", \"fs\", \"net\" - there were no hits"
1671+
notes = 'Grepped for "unsafe", "crypt", "cipher", "fs", "net" - there were no hits'
16721672
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
16731673

16741674
[[audits.google.audits.serde_derive]]
@@ -1687,7 +1687,7 @@ aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_p
16871687
who = "Lukasz Anforowicz <lukasza@chromium.org>"
16881688
criteria = "safe-to-deploy"
16891689
delta = "1.0.202 -> 1.0.203"
1690-
notes = "Grepped for \"unsafe\", \"crypt\", \"cipher\", \"fs\", \"net\" - there were no hits"
1690+
notes = 'Grepped for "unsafe", "crypt", "cipher", "fs", "net" - there were no hits'
16911691
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
16921692

16931693
[[audits.google.audits.serde_derive]]
@@ -3630,7 +3630,7 @@ criteria = "safe-to-deploy"
36303630
delta = "0.2.0 -> 0.2.1"
36313631
notes = """
36323632
- Changes to `unsafe` code blocks are just formatting.
3633-
- Changes to `extern fn`s are to declare them explicitly as `extern \"C\" fn`s.
3633+
- Changes to `extern fn`s are to declare them explicitly as `extern "C" fn`s.
36343634
"""
36353635
aggregated-from = "https://raw.githubusercontent.com/zcash/zcash/master/qa/supply-chain/audits.toml"
36363636

0 commit comments

Comments
 (0)