tree: bf7b0ea3dd488672476554510e52541371648fa0 [path history] [tgz]
  1. OWNERS
  2. README.md
third_party/rust/README.md

Rust third-party code

Use of Rust is being experimented with. As such, code outside of that experiment should not depend on targets in this directory.

Directory structure

We store each third-party crate in a directory suffixed by its epoch version. If the crate's verion has a major version greater-than 0, then that is used as its version suffix, such as -v1. Otherwise, the suffix includes all leading zeros in the version, such as -v0_3 or -v0_0_6.

For example, the tutelage crate at version 1.4.3 would be stored at

//third_party/rust/tutelage-v1

Whereas the verion 0.2.8 version would be stored at

//third_party/rust/tutelage-v0_2

OWNERS

We do not require OWNERS in each crate's directory at this time, however this will be revisted when Rust goes to production.

Vendoring vs DEPS

In order to move quickly and reduce our processes, we will vendor third-party code directly into Chromium src.git under this directory.

Testing

All third-party crates should have their tests added to a Chromium test suite. These tests will be run on the Rust FYI bots, and may move to a blocking bot when Rust goes to production.