configureCargoVendoredDepsHook() { local vendoredDir="${1:-${cargoVendorDir:?not defined}}" local cargoConfig="${2:-${CARGO_HOME:?not defined}/config.toml}" # NB: we add this configuration to $CARGO_HOME/config.toml # instead of .cargo/config.toml. This allows cargo to honor the # project's configuration (if it exists) with greater specificity # than the config we are adding. If the project knows what it is # doing and has its own source replacement going on, it can happily # ignore the changes we are trying to make! if [[ -f "${vendoredDir}/config.toml" ]]; then echo will append ${cargoConfig} with contents of ${vendoredDir}/config.toml cat "${vendoredDir}/config.toml" >>"${cargoConfig}" return fi echo setting source replacement config in ${cargoConfig} using vendored directory ${vendoredDir} cat >>"${cargoConfig}" <