crosvm/vendor
Daniel Verkamp 92665a611f Cargo.toml: move tempfile to dev-dependencies
The tempfile crate is only used in tests, so it does not need to be in
the main [dependencies] section of any of our first-party crates.

Also fix a couple of [dev_dependencies] instances to the officially
documented [dev-dependencies] name for consistency.

BUG=None
TEST=cargo tree

Change-Id: I1dcb6be10c302baec4e8ebe6f72480f76e4e3760
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5521511
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
2024-05-07 20:00:48 +00:00
..
generic Cargo.toml: move tempfile to dev-dependencies 2024-05-07 20:00:48 +00:00
README.md anti_tamper: refactor generic code 2023-06-09 23:09:35 +00:00

Vendor directory

/vendor/ directory facilitates maintaining downstream custom code. generic crates, containing either default implementation or stubs, live in /vendor/generic/ directory. The upstream code imports these generic crates from various Cargo.toml files.

Downstream product specific crates will live under /vendor/<product_name>/ directory. Downstream will replace /vendor/generic/crate imports with downstream crate path.