>>106774660
1. create crate stub with sole purpose of hosting depedencies
2. cargo add <dependencies> # make sure to include whatever features you might use
3. cargo vendor
4. for each actual crate you build that uses the vendor, inside `your-project/.cargo/config.toml`:
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "../vendor-hub/vendor"
replace the path to the vendor to whatever you need