Skip to content

Commit 33b1d6c

Browse files
committed
cargo vet
1 parent edba0db commit 33b1d6c

File tree

2 files changed

+30
-110
lines changed

2 files changed

+30
-110
lines changed

supply-chain/config.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -443,11 +443,11 @@ version = "11.1.4"
443443
criteria = "safe-to-run"
444444

445445
[[exemptions.openssl]]
446-
version = "0.10.64"
446+
version = "0.10.66"
447447
criteria = "safe-to-deploy"
448448

449449
[[exemptions.openssl-sys]]
450-
version = "0.9.102"
450+
version = "0.9.103"
451451
criteria = "safe-to-deploy"
452452

453453
[[exemptions.outref]]
@@ -718,10 +718,6 @@ criteria = "safe-to-deploy"
718718
version = "3.10.1"
719719
criteria = "safe-to-deploy"
720720

721-
[[exemptions.tinyvec]]
722-
version = "1.8.0"
723-
criteria = "safe-to-deploy"
724-
725721
[[exemptions.tinyvec_macros]]
726722
version = "0.1.1"
727723
criteria = "safe-to-deploy"
@@ -866,10 +862,6 @@ criteria = "safe-to-deploy"
866862
version = "0.7.35"
867863
criteria = "safe-to-deploy"
868864

869-
[[exemptions.zerovec]]
870-
version = "0.10.4"
871-
criteria = "safe-to-deploy"
872-
873865
[[exemptions.zstd]]
874866
version = "0.13.2"
875867
criteria = "safe-to-deploy"

supply-chain/imports.lock

Lines changed: 28 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1767,6 +1767,16 @@ criteria = "safe-to-deploy"
17671767
version = "1.1.0"
17681768
notes = "No dependencies and completely a compile-time crate as advertised. Uses `unsafe` in one module as a compile-time check only: `mem::transmute` and `ptr::write` are wrapped in an impossible-to-run closure."
17691769

1770+
[[audits.bytecode-alliance.audits.tinyvec]]
1771+
who = "Alex Crichton <[email protected]>"
1772+
criteria = "safe-to-deploy"
1773+
version = "1.6.0"
1774+
notes = """
1775+
This crate, while it implements collections, does so without `std::*` APIs and
1776+
without `unsafe`. Skimming the crate everything looks reasonable and what one
1777+
would expect from idiomatic safe collections in Rust.
1778+
"""
1779+
17701780
[[audits.bytecode-alliance.audits.tokio-native-tls]]
17711781
who = "Pat Hickey <[email protected]>"
17721782
criteria = "safe-to-deploy"
@@ -1977,6 +1987,24 @@ criteria = "safe-to-run"
19771987
version = "1.2.1"
19781988
aggregated-from = "https://chromium.googlesource.com/chromiumos/third_party/rust_crates/+/refs/heads/main/cargo-vet/audits.toml?format=TEXT"
19791989

1990+
[[audits.google.audits.tinyvec]]
1991+
who = "Adrian Taylor <[email protected]>"
1992+
criteria = "safe-to-deploy"
1993+
delta = "1.6.0 -> 1.6.1"
1994+
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
1995+
1996+
[[audits.google.audits.tinyvec]]
1997+
who = "Adrian Taylor <[email protected]>"
1998+
criteria = "safe-to-deploy"
1999+
delta = "1.6.1 -> 1.7.0"
2000+
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
2001+
2002+
[[audits.google.audits.tinyvec]]
2003+
who = "Dustin J. Mitchell <[email protected]>"
2004+
criteria = "safe-to-deploy"
2005+
delta = "1.7.0 -> 1.8.0"
2006+
aggregated-from = "https://chromium.googlesource.com/chromium/src/+/main/third_party/rust/chromium_crates_io/supply-chain/audits.toml?format=TEXT"
2007+
19802008
[[audits.google.audits.version_check]]
19812009
who = "George Burgess IV <[email protected]>"
19822010
criteria = "safe-to-deploy"
@@ -2315,12 +2343,6 @@ criteria = "safe-to-deploy"
23152343
delta = "0.5.5 -> 0.5.7"
23162344
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
23172345

2318-
[[audits.mozilla.audits.tinystr]]
2319-
who = "Makoto Kato <[email protected]>"
2320-
criteria = "safe-to-deploy"
2321-
delta = "0.7.4 -> 0.7.6"
2322-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2323-
23242346
[[audits.mozilla.audits.unicode-bidi]]
23252347
who = "Makoto Kato <[email protected]>"
23262348
criteria = "safe-to-deploy"
@@ -2339,97 +2361,3 @@ who = "Jonathan Kew <[email protected]>"
23392361
criteria = "safe-to-deploy"
23402362
delta = "0.3.14 -> 0.3.15"
23412363
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2342-
2343-
[[audits.mozilla.audits.writeable]]
2344-
who = "Makoto Kato <[email protected]>"
2345-
criteria = "safe-to-deploy"
2346-
version = "0.5.2"
2347-
notes = "writeable is a variation of fmt::Write with sink version. This uses `unsafe` block to handle potentially-invalid UTF-8 character. I've vetted the one instance of unsafe code."
2348-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2349-
2350-
[[audits.mozilla.audits.writeable]]
2351-
who = "Makoto Kato <[email protected]>"
2352-
criteria = "safe-to-deploy"
2353-
delta = "0.5.2 -> 0.5.4"
2354-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2355-
2356-
[[audits.mozilla.audits.writeable]]
2357-
who = "Makoto Kato <[email protected]>"
2358-
criteria = "safe-to-deploy"
2359-
delta = "0.5.4 -> 0.5.5"
2360-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2361-
2362-
[[audits.mozilla.audits.yoke]]
2363-
who = "Makoto Kato <[email protected]>"
2364-
criteria = "safe-to-deploy"
2365-
version = "0.7.1"
2366-
notes = "This crate is for zero-copy serialization for ICU4X data structure, and maintained by ICU4X team. Since this uses unsafe block for serialization, I audited code."
2367-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2368-
2369-
[[audits.mozilla.audits.yoke]]
2370-
who = "Makoto Kato <[email protected]>"
2371-
criteria = "safe-to-deploy"
2372-
delta = "0.7.1 -> 0.7.3"
2373-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2374-
2375-
[[audits.mozilla.audits.yoke]]
2376-
who = "Makoto Kato <[email protected]>"
2377-
criteria = "safe-to-deploy"
2378-
delta = "0.7.3 -> 0.7.4"
2379-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2380-
2381-
[[audits.mozilla.audits.yoke-derive]]
2382-
who = "Makoto Kato <[email protected]>"
2383-
criteria = "safe-to-deploy"
2384-
version = "0.7.3"
2385-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2386-
2387-
[[audits.mozilla.audits.yoke-derive]]
2388-
who = "Makoto Kato <[email protected]>"
2389-
criteria = "safe-to-deploy"
2390-
delta = "0.7.3 -> 0.7.4"
2391-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2392-
2393-
[[audits.mozilla.audits.zerofrom]]
2394-
who = "Makoto Kato <[email protected]>"
2395-
criteria = "safe-to-deploy"
2396-
version = "0.1.2"
2397-
notes = "This crate is zero-copy version of \"From\". This has no unsafe code and uses no ambient capabilities."
2398-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2399-
2400-
[[audits.mozilla.audits.zerofrom]]
2401-
who = "Makoto Kato <[email protected]>"
2402-
criteria = "safe-to-deploy"
2403-
delta = "0.1.2 -> 0.1.4"
2404-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2405-
2406-
[[audits.mozilla.audits.zerovec]]
2407-
who = "Makoto Kato <[email protected]>"
2408-
criteria = "safe-to-deploy"
2409-
version = "0.9.4"
2410-
notes = "This crate is zero-copy data structure implmentation. Although this uses unsafe block in several code, it requires for zero-copy. And this has a comment in code why this uses unsafe and I audited code."
2411-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2412-
2413-
[[audits.mozilla.audits.zerovec]]
2414-
who = "Makoto Kato <[email protected]>"
2415-
criteria = "safe-to-deploy"
2416-
delta = "0.9.4 -> 0.10.1"
2417-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2418-
2419-
[[audits.mozilla.audits.zerovec]]
2420-
who = "Makoto Kato <[email protected]>"
2421-
criteria = "safe-to-deploy"
2422-
delta = "0.10.1 -> 0.10.2"
2423-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2424-
2425-
[[audits.mozilla.audits.zerovec-derive]]
2426-
who = "Makoto Kato <[email protected]>"
2427-
criteria = "safe-to-deploy"
2428-
version = "0.10.1"
2429-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"
2430-
2431-
[[audits.mozilla.audits.zerovec-derive]]
2432-
who = "Makoto Kato <[email protected]>"
2433-
criteria = "safe-to-deploy"
2434-
delta = "0.10.1 -> 0.10.2"
2435-
aggregated-from = "https://hg.mozilla.org/mozilla-central/raw-file/tip/supply-chain/audits.toml"

0 commit comments

Comments
 (0)