Name Date Size #Lines LOC

..--

aho_corasick/v1/H25-Apr-2025-8679

anstyle/v1/H25-Apr-2025-5548

anyhow/v1/H25-Apr-2025-6256

base64/v0_13/H25-Apr-2025-6155

bitflags/v2/H25-Apr-2025-8275

bytemuck/v1/H25-Apr-2025-5852

bytes/v1/H25-Apr-2025-6660

cfg_if/v1/H25-Apr-2025-4740

chromium_crates_io/H25-Apr-2025-1,395,6181,172,138

clap/v4/H25-Apr-2025-196189

clap_builder/v4/H25-Apr-2025-115108

clap_lex/v0_7/H25-Apr-2025-5043

cxx/H25-Apr-2025-318275

cxxbridge_cmd/v1/H25-Apr-2025-9993

cxxbridge_flags/v1/H25-Apr-2025-5144

cxxbridge_macro/v1/H25-Apr-2025-9184

either/v1/H25-Apr-2025-5648

fend_core/v1/H25-Apr-2025-267205

font_types/v0_4/H25-Apr-2025-5953

getrandom/v0_2/H25-Apr-2025-8477

heck/v0_4/H25-Apr-2025-5851

hex/v0_4/H25-Apr-2025-5347

hex_literal/v0_4/H25-Apr-2025-4640

itertools/v0_11/H25-Apr-2025-10194

itoa/v1/H25-Apr-2025-5144

lazy_static/v1/H25-Apr-2025-4741

libc/v0_2/H25-Apr-2025-284277

log/v0_4/H25-Apr-2025-5548

memchr/v2/H25-Apr-2025-10092

nom/v7/H25-Apr-2025-7872

ppv_lite86/v0_2/H25-Apr-2025-5952

proc_macro2/v1/H25-Apr-2025-6357

prost/v0_12/H25-Apr-2025-6054

prost_derive/v0_12/H25-Apr-2025-6457

qr_code/v2/H25-Apr-2025-5852

quote/v1/H25-Apr-2025-5347

rand/v0_8/H25-Apr-2025-8881

rand_chacha/v0_3/H25-Apr-2025-5850

rand_core/v0_6/H25-Apr-2025-6456

rand_pcg/v0_3/H25-Apr-2025-5043

read_fonts/v0_15/H25-Apr-2025-158152

regex/v1/H25-Apr-2025-8477

regex_automata/v0_4/H25-Apr-2025-150143

regex_syntax/v0_8/H25-Apr-2025-9487

rustc_demangle/v0_1/H25-Apr-2025-5244

rustc_version/v0_4/H25-Apr-2025-5043

rustversion/v1/H25-Apr-2025-6155

ryu/v1/H25-Apr-2025-6558

semver/v1/H25-Apr-2025-6558

serde/v1/H25-Apr-2025-7367

serde_derive/v1/H25-Apr-2025-7164

serde_json/v1/H25-Apr-2025-9488

serde_json_lenient/v0_2/H25-Apr-2025-606432

skrifa/v0_15/H25-Apr-2025-8680

small_ctor/v0_1/H25-Apr-2025-4640

src/H25-Apr-2025-10

static_assertions/v1/H25-Apr-2025-5448

strsim/v0_11/H25-Apr-2025-5345

strum/v0_25/H25-Apr-2025-4640

strum_macros/v0_25/H25-Apr-2025-7165

syn/H25-Apr-2025-234221

termcolor/v1/H25-Apr-2025-5648

tinyvec/v1/H25-Apr-2025-5751

unicode_ident/v1/H25-Apr-2025-5043

unicode_linebreak/v0_1/H25-Apr-2025-4640

unicode_width/v0_1/H25-Apr-2025-5446

winapi_util/v0_1/H25-Apr-2025-5851

wycheproof/v0_4/H25-Apr-2025-382376

.clang-formatH A D25-Apr-202520 21

PRESUBMIT.pyH A D25-Apr-20251 KiB3220

README.mdH A D25-Apr-20251.9 KiB5742

README.md

1# Rust third-party code
2
3This directory contains all third-party Rust code, and sometimes thin wrappers
4around it for C++ intertop.
5
6## Crates.io
7
8Crates that come from [crates.io](https://crates.io) are found in
9`//third_party/rust/chromium_crates_io`, and are all vendored into the
10Chromium git repository. They are managed through Cargo rules and with
11the `gnrt` tool. See [`//docs/rust.md`](../../docs/rust.md) for how to
12bring in new third-party libraries or update them.
13
14The GN rules and README.chromium files for these crates are written by
15the `gnrt` tool and should not be edited by hand.
16
17### Directory structure
18
19We store GN rules for each third-party crate in a directory of the same name.
20Under that directory a folder named based on the crate epoch version is
21created. This limits first-party usage of a crate to only one version within
22each epoch.
23If the crate's version has a major version greater-than 0, then that is used
24as its version folder, such as `v1`. Otherwise, the name includes all
25leading zeros in the version, such as `v0_3`.
26
27For example, GN rules for the `tutelage` crate at version **1.4.3** would be
28stored at
29```sh
30//third_party/rust/tutelage/v1
31```
32
33Whereas GN rules for the verion **0.2.8** version would be stored at
34```sh
35//third_party/rust/tutelage/v0_2
36```
37
38## Other sources
39
40Third-party Rust libraries that are not distributed through [crates.io](
41https://crates.io) are uncommon. But they may live under
42`//third_party/rust/crate_name` directly, as a git submodule,
43with GN rules written for them by hand.
44
45## OWNERS
46
47We do not require OWNERS in each crate's directory at this time, but this
48will be revisited in the future.
49
50## Review process
51
52Rust libraries must go through the [3rd-party review process](
53../../docs/adding_to_third_party.md).
54See the [review of the `toml` crate](
55https://groups.google.com/u/1/a/chromium.org/g/security/c/K686pSg-gZc/m/Pn2QzqahAwAJ)
56for an example of a Rust security review.
57