├── .gitignore ├── .mds-list ├── LICENSE-APACHE ├── LICENSE-MIT ├── book.toml ├── contrib ├── README.md └── src │ ├── SUMMARY.md │ ├── architecture │ ├── codebase.md │ ├── compilation.md │ ├── console.md │ ├── files.md │ ├── index.md │ ├── packages.md │ └── subcommands.md │ ├── design.md │ ├── index.md │ ├── issues.md │ ├── process │ ├── index.md │ ├── release.md │ ├── unstable.md │ └── working-on-cargo.md │ └── tests │ ├── index.md │ ├── profiling.md │ ├── running.md │ └── writing.md ├── docs ├── .nojekyll ├── 404.html ├── FontAwesome │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── FontAwesome.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── appendix │ ├── git-authentication.zh.html │ └── glossary.zh.html ├── ayu-highlight.css ├── book.js ├── clipboard.min.js ├── commands │ ├── build-commands.zh.html │ ├── cargo-bench.zh.html │ ├── cargo-build.zh.html │ ├── cargo-check.zh.html │ ├── cargo-clean.zh.html │ ├── cargo-doc.zh.html │ ├── cargo-fetch.zh.html │ ├── cargo-fix.zh.html │ ├── cargo-generate-lockfile.zh.html │ ├── cargo-help.zh.html │ ├── cargo-init.zh.html │ ├── cargo-install.zh.html │ ├── cargo-locate-project.zh.html │ ├── cargo-login.zh.html │ ├── cargo-metadata.zh.html │ ├── cargo-new.zh.html │ ├── cargo-owner.zh.html │ ├── cargo-package.zh.html │ ├── cargo-pkgid.zh.html │ ├── cargo-publish.zh.html │ ├── cargo-report.zh.html │ ├── cargo-run.zh.html │ ├── cargo-rustc.zh.html │ ├── cargo-rustdoc.zh.html │ ├── cargo-search.zh.html │ ├── cargo-test.zh.html │ ├── cargo-tree.zh.html │ ├── cargo-uninstall.zh.html │ ├── cargo-update.zh.html │ ├── cargo-vendor.zh.html │ ├── cargo-verify-project.zh.html │ ├── cargo-version.zh.html │ ├── cargo-yank.zh.html │ ├── cargo.zh.html │ ├── general-commands.zh.html │ ├── index.zh.html │ ├── manifest-commands.zh.html │ ├── package-commands.zh.html │ └── publishing-commands.zh.html ├── css │ ├── chrome.css │ ├── general.css │ ├── print.css │ └── variables.css ├── elasticlunr.min.js ├── faq.zh.html ├── favicon.ico ├── favicon.png ├── favicon.svg ├── fonts │ ├── OPEN-SANS-LICENSE.txt │ ├── SOURCE-CODE-PRO-LICENSE.txt │ ├── fonts.css │ ├── open-sans-v17-all-charsets-300.woff2 │ ├── open-sans-v17-all-charsets-300italic.woff2 │ ├── open-sans-v17-all-charsets-600.woff2 │ ├── open-sans-v17-all-charsets-600italic.woff2 │ ├── open-sans-v17-all-charsets-700.woff2 │ ├── open-sans-v17-all-charsets-700italic.woff2 │ ├── open-sans-v17-all-charsets-800.woff2 │ ├── open-sans-v17-all-charsets-800italic.woff2 │ ├── open-sans-v17-all-charsets-italic.woff2 │ ├── open-sans-v17-all-charsets-regular.woff2 │ └── source-code-pro-v11-all-charsets-500.woff2 ├── getting-started │ ├── first-steps.zh.html │ ├── index.zh.html │ └── installation.zh.html ├── guide │ ├── build-cache.zh.html │ ├── cargo-home.zh.html │ ├── cargo-toml-vs-cargo-lock.zh.html │ ├── continuous-integration.zh.html │ ├── creating-a-new-project.zh.html │ ├── dependencies.zh.html │ ├── index.zh.html │ ├── project-layout.zh.html │ ├── tests.zh.html │ ├── why-cargo-exists.zh.html │ └── working-on-an-existing-project.zh.html ├── highlight.css ├── highlight.js ├── images │ ├── Cargo-Logo-Small.png │ ├── auth-level-acl.png │ ├── forkme.png │ └── org-level-acl.png ├── index.html ├── index.zh.html ├── mark.min.js ├── print.html ├── reference │ ├── build-script-examples.zh.html │ ├── build-scripts.zh.html │ ├── cargo-targets.zh.html │ ├── config.zh.html │ ├── environment-variables.zh.html │ ├── external-tools.zh.html │ ├── features-examples.zh.html │ ├── features.zh.html │ ├── future-incompat-report.zh.html │ ├── index.zh.html │ ├── manifest.zh.html │ ├── overriding-dependencies.zh.html │ ├── pkgid-spec.zh.html │ ├── profiles.zh.html │ ├── publishing.zh.html │ ├── registries.zh.html │ ├── resolver.zh.html │ ├── semver.zh.html │ ├── source-replacement.zh.html │ ├── specifying-dependencies.zh.html │ ├── unstable.zh.html │ └── workspaces.zh.html ├── searcher.js ├── searchindex.js ├── searchindex.json └── tomorrow-night.css ├── en.md ├── readme.md ├── src ├── SUMMARY.en.md ├── SUMMARY.md ├── appendix │ ├── git-authentication.md │ ├── git-authentication.zh.md │ ├── glossary.md │ └── glossary.zh.md ├── commands │ ├── build-commands.md │ ├── build-commands.zh.md │ ├── cargo-bench.md │ ├── cargo-bench.zh.md │ ├── cargo-build.md │ ├── cargo-build.zh.md │ ├── cargo-check.md │ ├── cargo-check.zh.md │ ├── cargo-clean.md │ ├── cargo-clean.zh.md │ ├── cargo-doc.md │ ├── cargo-doc.zh.md │ ├── cargo-fetch.md │ ├── cargo-fetch.zh.md │ ├── cargo-fix.md │ ├── cargo-fix.zh.md │ ├── cargo-generate-lockfile.md │ ├── cargo-generate-lockfile.zh.md │ ├── cargo-help.md │ ├── cargo-help.zh.md │ ├── cargo-init.md │ ├── cargo-init.zh.md │ ├── cargo-install.md │ ├── cargo-install.zh.md │ ├── cargo-locate-project.md │ ├── cargo-locate-project.zh.md │ ├── cargo-login.md │ ├── cargo-login.zh.md │ ├── cargo-metadata.md │ ├── cargo-metadata.zh.md │ ├── cargo-new.md │ ├── cargo-new.zh.md │ ├── cargo-owner.md │ ├── cargo-owner.zh.md │ ├── cargo-package.md │ ├── cargo-package.zh.md │ ├── cargo-pkgid.md │ ├── cargo-pkgid.zh.md │ ├── cargo-publish.md │ ├── cargo-publish.zh.md │ ├── cargo-report.md │ ├── cargo-report.zh.md │ ├── cargo-run.md │ ├── cargo-run.zh.md │ ├── cargo-rustc.md │ ├── cargo-rustc.zh.md │ ├── cargo-rustdoc.md │ ├── cargo-rustdoc.zh.md │ ├── cargo-search.md │ ├── cargo-search.zh.md │ ├── cargo-test.md │ ├── cargo-test.zh.md │ ├── cargo-tree.md │ ├── cargo-tree.zh.md │ ├── cargo-uninstall.md │ ├── cargo-uninstall.zh.md │ ├── cargo-update.md │ ├── cargo-update.zh.md │ ├── cargo-vendor.md │ ├── cargo-vendor.zh.md │ ├── cargo-verify-project.md │ ├── cargo-verify-project.zh.md │ ├── cargo-version.md │ ├── cargo-version.zh.md │ ├── cargo-yank.md │ ├── cargo-yank.zh.md │ ├── cargo.md │ ├── cargo.zh.md │ ├── general-commands.md │ ├── general-commands.zh.md │ ├── index.md │ ├── index.zh.md │ ├── manifest-commands.md │ ├── manifest-commands.zh.md │ ├── package-commands.md │ ├── package-commands.zh.md │ ├── publishing-commands.md │ └── publishing-commands.zh.md ├── faq.md ├── faq.zh.md ├── favicon.ico ├── getting-started │ ├── first-steps.md │ ├── first-steps.zh.md │ ├── index.md │ ├── index.zh.md │ ├── installation.md │ └── installation.zh.md ├── guide │ ├── build-cache.md │ ├── build-cache.zh.md │ ├── cargo-home.md │ ├── cargo-home.zh.md │ ├── cargo-toml-vs-cargo-lock.md │ ├── cargo-toml-vs-cargo-lock.zh.md │ ├── continuous-integration.md │ ├── continuous-integration.zh.md │ ├── creating-a-new-project.md │ ├── creating-a-new-project.zh.md │ ├── dependencies.md │ ├── dependencies.zh.md │ ├── index.md │ ├── index.zh.md │ ├── project-layout.md │ ├── project-layout.zh.md │ ├── tests.md │ ├── tests.zh.md │ ├── why-cargo-exists.md │ ├── why-cargo-exists.zh.md │ ├── working-on-an-existing-project.md │ └── working-on-an-existing-project.zh.md ├── images │ ├── Cargo-Logo-Small.png │ ├── auth-level-acl.png │ ├── forkme.png │ └── org-level-acl.png ├── index.md ├── index.zh.md └── reference │ ├── build-script-examples.md │ ├── build-script-examples.zh.md │ ├── build-scripts.md │ ├── build-scripts.zh.md │ ├── cargo-targets.md │ ├── cargo-targets.zh.md │ ├── config.md │ ├── config.zh.md │ ├── environment-variables.md │ ├── environment-variables.zh.md │ ├── external-tools.md │ ├── external-tools.zh.md │ ├── features-examples.md │ ├── features-examples.zh.md │ ├── features.md │ ├── features.zh.md │ ├── future-incompat-report.md │ ├── future-incompat-report.zh.md │ ├── index.md │ ├── index.zh.md │ ├── manifest.md │ ├── manifest.zh.md │ ├── overriding-dependencies.md │ ├── overriding-dependencies.zh.md │ ├── pkgid-spec.md │ ├── pkgid-spec.zh.md │ ├── profiles.md │ ├── profiles.zh.md │ ├── publishing.md │ ├── publishing.zh.md │ ├── registries.md │ ├── registries.zh.md │ ├── resolver.md │ ├── resolver.zh.md │ ├── semver.md │ ├── semver.zh.md │ ├── source-replacement.md │ ├── source-replacement.zh.md │ ├── specifying-dependencies.md │ ├── specifying-dependencies.zh.md │ ├── unstable.md │ ├── unstable.zh.md │ ├── workspaces.md │ └── workspaces.zh.md └── sync-en.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/.gitignore -------------------------------------------------------------------------------- /.mds-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/.mds-list -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/book.toml -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/SUMMARY.md -------------------------------------------------------------------------------- /contrib/src/architecture/codebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/codebase.md -------------------------------------------------------------------------------- /contrib/src/architecture/compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/compilation.md -------------------------------------------------------------------------------- /contrib/src/architecture/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/console.md -------------------------------------------------------------------------------- /contrib/src/architecture/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/files.md -------------------------------------------------------------------------------- /contrib/src/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/index.md -------------------------------------------------------------------------------- /contrib/src/architecture/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/packages.md -------------------------------------------------------------------------------- /contrib/src/architecture/subcommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/architecture/subcommands.md -------------------------------------------------------------------------------- /contrib/src/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/design.md -------------------------------------------------------------------------------- /contrib/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/index.md -------------------------------------------------------------------------------- /contrib/src/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/issues.md -------------------------------------------------------------------------------- /contrib/src/process/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/process/index.md -------------------------------------------------------------------------------- /contrib/src/process/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/process/release.md -------------------------------------------------------------------------------- /contrib/src/process/unstable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/process/unstable.md -------------------------------------------------------------------------------- /contrib/src/process/working-on-cargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/process/working-on-cargo.md -------------------------------------------------------------------------------- /contrib/src/tests/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/tests/index.md -------------------------------------------------------------------------------- /contrib/src/tests/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/tests/profiling.md -------------------------------------------------------------------------------- /contrib/src/tests/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/tests/running.md -------------------------------------------------------------------------------- /contrib/src/tests/writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/contrib/src/tests/writing.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/FontAwesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/css/font-awesome.css -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/appendix/git-authentication.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/appendix/git-authentication.zh.html -------------------------------------------------------------------------------- /docs/appendix/glossary.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/appendix/glossary.zh.html -------------------------------------------------------------------------------- /docs/ayu-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/ayu-highlight.css -------------------------------------------------------------------------------- /docs/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/book.js -------------------------------------------------------------------------------- /docs/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/clipboard.min.js -------------------------------------------------------------------------------- /docs/commands/build-commands.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/build-commands.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-bench.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-bench.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-build.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-build.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-check.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-check.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-clean.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-clean.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-doc.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-doc.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-fetch.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-fetch.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-fix.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-fix.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-generate-lockfile.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-generate-lockfile.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-help.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-help.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-init.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-init.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-install.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-install.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-locate-project.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-locate-project.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-login.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-login.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-metadata.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-metadata.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-new.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-new.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-owner.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-owner.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-package.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-package.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-pkgid.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-pkgid.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-publish.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-publish.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-report.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-report.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-run.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-run.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-rustc.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-rustc.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-rustdoc.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-rustdoc.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-search.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-search.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-test.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-test.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-tree.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-tree.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-uninstall.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-uninstall.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-update.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-update.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-vendor.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-vendor.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-verify-project.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-verify-project.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-version.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-version.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo-yank.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo-yank.zh.html -------------------------------------------------------------------------------- /docs/commands/cargo.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/cargo.zh.html -------------------------------------------------------------------------------- /docs/commands/general-commands.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/general-commands.zh.html -------------------------------------------------------------------------------- /docs/commands/index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/index.zh.html -------------------------------------------------------------------------------- /docs/commands/manifest-commands.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/manifest-commands.zh.html -------------------------------------------------------------------------------- /docs/commands/package-commands.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/package-commands.zh.html -------------------------------------------------------------------------------- /docs/commands/publishing-commands.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/commands/publishing-commands.zh.html -------------------------------------------------------------------------------- /docs/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/css/chrome.css -------------------------------------------------------------------------------- /docs/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/css/general.css -------------------------------------------------------------------------------- /docs/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/css/print.css -------------------------------------------------------------------------------- /docs/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/css/variables.css -------------------------------------------------------------------------------- /docs/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/elasticlunr.min.js -------------------------------------------------------------------------------- /docs/faq.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/faq.zh.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /docs/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /docs/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/fonts.css -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /docs/getting-started/first-steps.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/getting-started/first-steps.zh.html -------------------------------------------------------------------------------- /docs/getting-started/index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/getting-started/index.zh.html -------------------------------------------------------------------------------- /docs/getting-started/installation.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/getting-started/installation.zh.html -------------------------------------------------------------------------------- /docs/guide/build-cache.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/build-cache.zh.html -------------------------------------------------------------------------------- /docs/guide/cargo-home.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/cargo-home.zh.html -------------------------------------------------------------------------------- /docs/guide/cargo-toml-vs-cargo-lock.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/cargo-toml-vs-cargo-lock.zh.html -------------------------------------------------------------------------------- /docs/guide/continuous-integration.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/continuous-integration.zh.html -------------------------------------------------------------------------------- /docs/guide/creating-a-new-project.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/creating-a-new-project.zh.html -------------------------------------------------------------------------------- /docs/guide/dependencies.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/dependencies.zh.html -------------------------------------------------------------------------------- /docs/guide/index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/index.zh.html -------------------------------------------------------------------------------- /docs/guide/project-layout.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/project-layout.zh.html -------------------------------------------------------------------------------- /docs/guide/tests.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/tests.zh.html -------------------------------------------------------------------------------- /docs/guide/why-cargo-exists.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/why-cargo-exists.zh.html -------------------------------------------------------------------------------- /docs/guide/working-on-an-existing-project.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/guide/working-on-an-existing-project.zh.html -------------------------------------------------------------------------------- /docs/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/highlight.css -------------------------------------------------------------------------------- /docs/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/highlight.js -------------------------------------------------------------------------------- /docs/images/Cargo-Logo-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/images/Cargo-Logo-Small.png -------------------------------------------------------------------------------- /docs/images/auth-level-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/images/auth-level-acl.png -------------------------------------------------------------------------------- /docs/images/forkme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/images/forkme.png -------------------------------------------------------------------------------- /docs/images/org-level-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/images/org-level-acl.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/index.zh.html -------------------------------------------------------------------------------- /docs/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/mark.min.js -------------------------------------------------------------------------------- /docs/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/print.html -------------------------------------------------------------------------------- /docs/reference/build-script-examples.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/build-script-examples.zh.html -------------------------------------------------------------------------------- /docs/reference/build-scripts.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/build-scripts.zh.html -------------------------------------------------------------------------------- /docs/reference/cargo-targets.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/cargo-targets.zh.html -------------------------------------------------------------------------------- /docs/reference/config.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/config.zh.html -------------------------------------------------------------------------------- /docs/reference/environment-variables.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/environment-variables.zh.html -------------------------------------------------------------------------------- /docs/reference/external-tools.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/external-tools.zh.html -------------------------------------------------------------------------------- /docs/reference/features-examples.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/features-examples.zh.html -------------------------------------------------------------------------------- /docs/reference/features.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/features.zh.html -------------------------------------------------------------------------------- /docs/reference/future-incompat-report.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/future-incompat-report.zh.html -------------------------------------------------------------------------------- /docs/reference/index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/index.zh.html -------------------------------------------------------------------------------- /docs/reference/manifest.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/manifest.zh.html -------------------------------------------------------------------------------- /docs/reference/overriding-dependencies.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/overriding-dependencies.zh.html -------------------------------------------------------------------------------- /docs/reference/pkgid-spec.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/pkgid-spec.zh.html -------------------------------------------------------------------------------- /docs/reference/profiles.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/profiles.zh.html -------------------------------------------------------------------------------- /docs/reference/publishing.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/publishing.zh.html -------------------------------------------------------------------------------- /docs/reference/registries.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/registries.zh.html -------------------------------------------------------------------------------- /docs/reference/resolver.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/resolver.zh.html -------------------------------------------------------------------------------- /docs/reference/semver.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/semver.zh.html -------------------------------------------------------------------------------- /docs/reference/source-replacement.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/source-replacement.zh.html -------------------------------------------------------------------------------- /docs/reference/specifying-dependencies.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/specifying-dependencies.zh.html -------------------------------------------------------------------------------- /docs/reference/unstable.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/unstable.zh.html -------------------------------------------------------------------------------- /docs/reference/workspaces.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/reference/workspaces.zh.html -------------------------------------------------------------------------------- /docs/searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/searcher.js -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/searchindex.json -------------------------------------------------------------------------------- /docs/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/docs/tomorrow-night.css -------------------------------------------------------------------------------- /en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/en.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/readme.md -------------------------------------------------------------------------------- /src/SUMMARY.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/SUMMARY.en.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/appendix/git-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/appendix/git-authentication.md -------------------------------------------------------------------------------- /src/appendix/git-authentication.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/appendix/git-authentication.zh.md -------------------------------------------------------------------------------- /src/appendix/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/appendix/glossary.md -------------------------------------------------------------------------------- /src/appendix/glossary.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/appendix/glossary.zh.md -------------------------------------------------------------------------------- /src/commands/build-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/build-commands.md -------------------------------------------------------------------------------- /src/commands/build-commands.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/build-commands.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-bench.md -------------------------------------------------------------------------------- /src/commands/cargo-bench.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-bench.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-build.md -------------------------------------------------------------------------------- /src/commands/cargo-build.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-build.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-check.md -------------------------------------------------------------------------------- /src/commands/cargo-check.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-check.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-clean.md -------------------------------------------------------------------------------- /src/commands/cargo-clean.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-clean.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-doc.md -------------------------------------------------------------------------------- /src/commands/cargo-doc.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-doc.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-fetch.md -------------------------------------------------------------------------------- /src/commands/cargo-fetch.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-fetch.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-fix.md -------------------------------------------------------------------------------- /src/commands/cargo-fix.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-fix.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-generate-lockfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-generate-lockfile.md -------------------------------------------------------------------------------- /src/commands/cargo-generate-lockfile.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-generate-lockfile.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-help.md -------------------------------------------------------------------------------- /src/commands/cargo-help.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-help.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-init.md -------------------------------------------------------------------------------- /src/commands/cargo-init.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-init.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-install.md -------------------------------------------------------------------------------- /src/commands/cargo-install.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-install.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-locate-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-locate-project.md -------------------------------------------------------------------------------- /src/commands/cargo-locate-project.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-locate-project.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-login.md -------------------------------------------------------------------------------- /src/commands/cargo-login.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-login.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-metadata.md -------------------------------------------------------------------------------- /src/commands/cargo-metadata.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-metadata.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-new.md -------------------------------------------------------------------------------- /src/commands/cargo-new.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-new.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-owner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-owner.md -------------------------------------------------------------------------------- /src/commands/cargo-owner.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-owner.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-package.md -------------------------------------------------------------------------------- /src/commands/cargo-package.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-package.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-pkgid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-pkgid.md -------------------------------------------------------------------------------- /src/commands/cargo-pkgid.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-pkgid.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-publish.md -------------------------------------------------------------------------------- /src/commands/cargo-publish.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-publish.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-report.md -------------------------------------------------------------------------------- /src/commands/cargo-report.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-report.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-run.md -------------------------------------------------------------------------------- /src/commands/cargo-run.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-run.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-rustc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-rustc.md -------------------------------------------------------------------------------- /src/commands/cargo-rustc.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-rustc.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-rustdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-rustdoc.md -------------------------------------------------------------------------------- /src/commands/cargo-rustdoc.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-rustdoc.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-search.md -------------------------------------------------------------------------------- /src/commands/cargo-search.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-search.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-test.md -------------------------------------------------------------------------------- /src/commands/cargo-test.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-test.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-tree.md -------------------------------------------------------------------------------- /src/commands/cargo-tree.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-tree.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-uninstall.md -------------------------------------------------------------------------------- /src/commands/cargo-uninstall.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-uninstall.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-update.md -------------------------------------------------------------------------------- /src/commands/cargo-update.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-update.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-vendor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-vendor.md -------------------------------------------------------------------------------- /src/commands/cargo-vendor.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-vendor.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-verify-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-verify-project.md -------------------------------------------------------------------------------- /src/commands/cargo-verify-project.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-verify-project.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-version.md -------------------------------------------------------------------------------- /src/commands/cargo-version.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-version.zh.md -------------------------------------------------------------------------------- /src/commands/cargo-yank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-yank.md -------------------------------------------------------------------------------- /src/commands/cargo-yank.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo-yank.zh.md -------------------------------------------------------------------------------- /src/commands/cargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo.md -------------------------------------------------------------------------------- /src/commands/cargo.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/cargo.zh.md -------------------------------------------------------------------------------- /src/commands/general-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/general-commands.md -------------------------------------------------------------------------------- /src/commands/general-commands.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/general-commands.zh.md -------------------------------------------------------------------------------- /src/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/index.md -------------------------------------------------------------------------------- /src/commands/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/index.zh.md -------------------------------------------------------------------------------- /src/commands/manifest-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/manifest-commands.md -------------------------------------------------------------------------------- /src/commands/manifest-commands.zh.md: -------------------------------------------------------------------------------- 1 | # Manifest Commands 2 | -------------------------------------------------------------------------------- /src/commands/package-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/package-commands.md -------------------------------------------------------------------------------- /src/commands/package-commands.zh.md: -------------------------------------------------------------------------------- 1 | # Package Commands 2 | -------------------------------------------------------------------------------- /src/commands/publishing-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/commands/publishing-commands.md -------------------------------------------------------------------------------- /src/commands/publishing-commands.zh.md: -------------------------------------------------------------------------------- 1 | # Publishing Commands 2 | -------------------------------------------------------------------------------- /src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/faq.md -------------------------------------------------------------------------------- /src/faq.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/faq.zh.md -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/getting-started/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/first-steps.md -------------------------------------------------------------------------------- /src/getting-started/first-steps.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/first-steps.zh.md -------------------------------------------------------------------------------- /src/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/index.md -------------------------------------------------------------------------------- /src/getting-started/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/index.zh.md -------------------------------------------------------------------------------- /src/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/installation.md -------------------------------------------------------------------------------- /src/getting-started/installation.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/getting-started/installation.zh.md -------------------------------------------------------------------------------- /src/guide/build-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/build-cache.md -------------------------------------------------------------------------------- /src/guide/build-cache.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/build-cache.zh.md -------------------------------------------------------------------------------- /src/guide/cargo-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/cargo-home.md -------------------------------------------------------------------------------- /src/guide/cargo-home.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/cargo-home.zh.md -------------------------------------------------------------------------------- /src/guide/cargo-toml-vs-cargo-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/cargo-toml-vs-cargo-lock.md -------------------------------------------------------------------------------- /src/guide/cargo-toml-vs-cargo-lock.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/cargo-toml-vs-cargo-lock.zh.md -------------------------------------------------------------------------------- /src/guide/continuous-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/continuous-integration.md -------------------------------------------------------------------------------- /src/guide/continuous-integration.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/continuous-integration.zh.md -------------------------------------------------------------------------------- /src/guide/creating-a-new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/creating-a-new-project.md -------------------------------------------------------------------------------- /src/guide/creating-a-new-project.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/creating-a-new-project.zh.md -------------------------------------------------------------------------------- /src/guide/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/dependencies.md -------------------------------------------------------------------------------- /src/guide/dependencies.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/dependencies.zh.md -------------------------------------------------------------------------------- /src/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/index.md -------------------------------------------------------------------------------- /src/guide/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/index.zh.md -------------------------------------------------------------------------------- /src/guide/project-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/project-layout.md -------------------------------------------------------------------------------- /src/guide/project-layout.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/project-layout.zh.md -------------------------------------------------------------------------------- /src/guide/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/tests.md -------------------------------------------------------------------------------- /src/guide/tests.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/tests.zh.md -------------------------------------------------------------------------------- /src/guide/why-cargo-exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/why-cargo-exists.md -------------------------------------------------------------------------------- /src/guide/why-cargo-exists.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/why-cargo-exists.zh.md -------------------------------------------------------------------------------- /src/guide/working-on-an-existing-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/working-on-an-existing-project.md -------------------------------------------------------------------------------- /src/guide/working-on-an-existing-project.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/guide/working-on-an-existing-project.zh.md -------------------------------------------------------------------------------- /src/images/Cargo-Logo-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/images/Cargo-Logo-Small.png -------------------------------------------------------------------------------- /src/images/auth-level-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/images/auth-level-acl.png -------------------------------------------------------------------------------- /src/images/forkme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/images/forkme.png -------------------------------------------------------------------------------- /src/images/org-level-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/images/org-level-acl.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/index.md -------------------------------------------------------------------------------- /src/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/index.zh.md -------------------------------------------------------------------------------- /src/reference/build-script-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/build-script-examples.md -------------------------------------------------------------------------------- /src/reference/build-script-examples.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/build-script-examples.zh.md -------------------------------------------------------------------------------- /src/reference/build-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/build-scripts.md -------------------------------------------------------------------------------- /src/reference/build-scripts.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/build-scripts.zh.md -------------------------------------------------------------------------------- /src/reference/cargo-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/cargo-targets.md -------------------------------------------------------------------------------- /src/reference/cargo-targets.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/cargo-targets.zh.md -------------------------------------------------------------------------------- /src/reference/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/config.md -------------------------------------------------------------------------------- /src/reference/config.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/config.zh.md -------------------------------------------------------------------------------- /src/reference/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/environment-variables.md -------------------------------------------------------------------------------- /src/reference/environment-variables.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/environment-variables.zh.md -------------------------------------------------------------------------------- /src/reference/external-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/external-tools.md -------------------------------------------------------------------------------- /src/reference/external-tools.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/external-tools.zh.md -------------------------------------------------------------------------------- /src/reference/features-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/features-examples.md -------------------------------------------------------------------------------- /src/reference/features-examples.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/features-examples.zh.md -------------------------------------------------------------------------------- /src/reference/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/features.md -------------------------------------------------------------------------------- /src/reference/features.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/features.zh.md -------------------------------------------------------------------------------- /src/reference/future-incompat-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/future-incompat-report.md -------------------------------------------------------------------------------- /src/reference/future-incompat-report.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/future-incompat-report.zh.md -------------------------------------------------------------------------------- /src/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/index.md -------------------------------------------------------------------------------- /src/reference/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/index.zh.md -------------------------------------------------------------------------------- /src/reference/manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/manifest.md -------------------------------------------------------------------------------- /src/reference/manifest.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/manifest.zh.md -------------------------------------------------------------------------------- /src/reference/overriding-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/overriding-dependencies.md -------------------------------------------------------------------------------- /src/reference/overriding-dependencies.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/overriding-dependencies.zh.md -------------------------------------------------------------------------------- /src/reference/pkgid-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/pkgid-spec.md -------------------------------------------------------------------------------- /src/reference/pkgid-spec.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/pkgid-spec.zh.md -------------------------------------------------------------------------------- /src/reference/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/profiles.md -------------------------------------------------------------------------------- /src/reference/profiles.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/profiles.zh.md -------------------------------------------------------------------------------- /src/reference/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/publishing.md -------------------------------------------------------------------------------- /src/reference/publishing.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/publishing.zh.md -------------------------------------------------------------------------------- /src/reference/registries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/registries.md -------------------------------------------------------------------------------- /src/reference/registries.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/registries.zh.md -------------------------------------------------------------------------------- /src/reference/resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/resolver.md -------------------------------------------------------------------------------- /src/reference/resolver.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/resolver.zh.md -------------------------------------------------------------------------------- /src/reference/semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/semver.md -------------------------------------------------------------------------------- /src/reference/semver.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/semver.zh.md -------------------------------------------------------------------------------- /src/reference/source-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/source-replacement.md -------------------------------------------------------------------------------- /src/reference/source-replacement.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/source-replacement.zh.md -------------------------------------------------------------------------------- /src/reference/specifying-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/specifying-dependencies.md -------------------------------------------------------------------------------- /src/reference/specifying-dependencies.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/specifying-dependencies.zh.md -------------------------------------------------------------------------------- /src/reference/unstable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/unstable.md -------------------------------------------------------------------------------- /src/reference/unstable.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/unstable.zh.md -------------------------------------------------------------------------------- /src/reference/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/workspaces.md -------------------------------------------------------------------------------- /src/reference/workspaces.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/src/reference/workspaces.zh.md -------------------------------------------------------------------------------- /sync-en.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinanf-boy/cargo-book-zh/HEAD/sync-en.sh --------------------------------------------------------------------------------