diff --git a/pages/common/cargo-fetch.md b/pages/common/cargo-fetch.md new file mode 100644 index 0000000000..c64a6065f1 --- /dev/null +++ b/pages/common/cargo-fetch.md @@ -0,0 +1,32 @@ +# cargo fetch + +> Fetch dependencies of a package from the network. +> More information: . + +- Fetch dependencies from the `Cargo.lock` file: + +`cargo fetch {{options}}` + +- Display verbose output: + +`cargo fetch --verbose` + +- Do not print Cargo log messages: + +`cargo fetch --quiet` + +- Control colored output: + +`cargo fetch --color {{auto|always|never}}` + +- Path to `Cargo.toml`: + +`cargo fetch --manifest-path {{path}}` + +- Prevent Cargo from accessing the network: + +`cargo fetch --offline` + +- Display help: + +`cargo fetch --help`