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