• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Vendor directory
2
3`/vendor/` directory facilitates maintaining downstream custom code. generic crates, containing
4either default implementation or stubs, live in `/vendor/generic/` directory. The upstream code
5imports these generic crates from various Cargo.toml files.
6
7Downstream product specific crates will live under `/vendor/<product_name>/` directory. Downstream
8will replace `/vendor/generic/`crate imports with downstream crate path.
9