├── .cargo └── config.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── tracking_issue.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── audit.yml │ ├── contrib.yml │ └── main.yml ├── .gitignore ├── .ignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── LICENSE-THIRD-PARTY ├── README.md ├── benches ├── README.md ├── benchsuite │ ├── Cargo.toml │ ├── benches │ │ ├── resolve.rs │ │ └── workspace_initialization.rs │ └── src │ │ └── lib.rs ├── capture │ ├── Cargo.toml │ └── src │ │ └── main.rs └── workspaces │ ├── cargo.tgz │ ├── diem.tgz │ ├── empty.tgz │ ├── gecko-dev.tgz │ ├── rust-ws-inherit.tgz │ ├── rust.tgz │ ├── servo.tgz │ ├── substrate.tgz │ ├── tikv.tgz │ └── toml-rs.tgz ├── ci ├── clean-test-output.sh ├── dump-environment.sh ├── fetch-smoke-test.sh ├── validate-man.sh └── validate-version-bump.sh ├── clippy.toml ├── crates ├── cargo-platform │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── examples │ │ └── matches.rs │ ├── src │ │ ├── cfg.rs │ │ ├── error.rs │ │ └── lib.rs │ └── tests │ │ └── test_cfg.rs ├── cargo-test-macro │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── cargo-test-support │ ├── Cargo.toml │ ├── build.rs │ ├── containers │ │ ├── apache │ │ │ ├── Dockerfile │ │ │ ├── bar │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── httpd-cargo.conf │ │ └── sshd │ │ │ ├── Dockerfile │ │ │ └── bar │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ └── src │ │ ├── compare.rs │ │ ├── containers.rs │ │ ├── cross_compile.rs │ │ ├── diff.rs │ │ ├── git.rs │ │ ├── install.rs │ │ ├── lib.rs │ │ ├── paths.rs │ │ ├── publish.rs │ │ ├── registry.rs │ │ └── tools.rs ├── cargo-util │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── lib.rs │ │ ├── paths.rs │ │ ├── process_builder.rs │ │ ├── process_error.rs │ │ ├── read2.rs │ │ ├── registry.rs │ │ └── sha256.rs ├── crates-io │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── lib.rs ├── home │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── env.rs │ │ ├── lib.rs │ │ └── windows.rs ├── mdman │ ├── Cargo.toml │ ├── README.md │ ├── doc │ │ ├── mdman.md │ │ └── out │ │ │ ├── mdman.1 │ │ │ ├── mdman.md │ │ │ └── mdman.txt │ ├── src │ │ ├── format.rs │ │ ├── format │ │ │ ├── man.rs │ │ │ ├── md.rs │ │ │ └── text.rs │ │ ├── hbs.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ └── util.rs │ └── tests │ │ ├── compare.rs │ │ ├── compare │ │ ├── expected │ │ │ ├── formatting.1 │ │ │ ├── formatting.md │ │ │ ├── formatting.txt │ │ │ ├── links.1 │ │ │ ├── links.md │ │ │ ├── links.txt │ │ │ ├── options.1 │ │ │ ├── options.md │ │ │ ├── options.txt │ │ │ ├── tables.1 │ │ │ ├── tables.md │ │ │ ├── tables.txt │ │ │ ├── vars.7 │ │ │ ├── vars.md │ │ │ └── vars.txt │ │ ├── formatting.md │ │ ├── includes │ │ │ ├── links-include.md │ │ │ └── options-common.md │ │ ├── links.md │ │ ├── options.md │ │ ├── tables.md │ │ └── vars.md │ │ ├── invalid.rs │ │ └── invalid │ │ ├── nested.md │ │ └── not-inside-options.md ├── resolver-tests │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ │ └── resolve.rs ├── semver-check │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── xtask-build-man │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── xtask-stale-label │ ├── Cargo.toml │ └── src │ │ └── main.rs └── xtask-unpublished │ ├── Cargo.toml │ └── src │ ├── main.rs │ └── xtask.rs ├── credential ├── README.md ├── cargo-credential-1password │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── cargo-credential-gnome-secret │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ └── src │ │ ├── libsecret.rs │ │ └── main.rs ├── cargo-credential-macos-keychain │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── cargo-credential-wincred │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs └── cargo-credential │ ├── Cargo.toml │ ├── README.md │ └── src │ └── lib.rs ├── deny.toml ├── publish.py ├── src ├── bin │ └── cargo │ │ ├── cli.rs │ │ ├── commands │ │ ├── add.rs │ │ ├── bench.rs │ │ ├── build.rs │ │ ├── check.rs │ │ ├── clean.rs │ │ ├── config.rs │ │ ├── doc.rs │ │ ├── fetch.rs │ │ ├── fix.rs │ │ ├── generate_lockfile.rs │ │ ├── git_checkout.rs │ │ ├── help.rs │ │ ├── init.rs │ │ ├── install.rs │ │ ├── locate_project.rs │ │ ├── login.rs │ │ ├── logout.rs │ │ ├── metadata.rs │ │ ├── mod.rs │ │ ├── new.rs │ │ ├── owner.rs │ │ ├── package.rs │ │ ├── pkgid.rs │ │ ├── publish.rs │ │ ├── read_manifest.rs │ │ ├── remove.rs │ │ ├── report.rs │ │ ├── run.rs │ │ ├── rustc.rs │ │ ├── rustdoc.rs │ │ ├── search.rs │ │ ├── test.rs │ │ ├── tree.rs │ │ ├── uninstall.rs │ │ ├── update.rs │ │ ├── vendor.rs │ │ ├── verify_project.rs │ │ ├── version.rs │ │ └── yank.rs │ │ └── main.rs ├── cargo │ ├── core │ │ ├── compiler │ │ │ ├── artifact.rs │ │ │ ├── build_config.rs │ │ │ ├── build_context │ │ │ │ ├── mod.rs │ │ │ │ └── target_info.rs │ │ │ ├── build_plan.rs │ │ │ ├── compilation.rs │ │ │ ├── compile_kind.rs │ │ │ ├── context │ │ │ │ ├── compilation_files.rs │ │ │ │ └── mod.rs │ │ │ ├── crate_type.rs │ │ │ ├── custom_build.rs │ │ │ ├── fingerprint │ │ │ │ ├── dirty_reason.rs │ │ │ │ └── mod.rs │ │ │ ├── future_incompat.rs │ │ │ ├── job_queue │ │ │ │ ├── job.rs │ │ │ │ ├── job_state.rs │ │ │ │ └── mod.rs │ │ │ ├── layout.rs │ │ │ ├── links.rs │ │ │ ├── lto.rs │ │ │ ├── mod.rs │ │ │ ├── output_depinfo.rs │ │ │ ├── rustdoc.rs │ │ │ ├── standard_lib.rs │ │ │ ├── timings.js │ │ │ ├── timings.rs │ │ │ ├── unit.rs │ │ │ ├── unit_dependencies.rs │ │ │ └── unit_graph.rs │ │ ├── dependency.rs │ │ ├── features.rs │ │ ├── manifest.rs │ │ ├── mod.rs │ │ ├── package.rs │ │ ├── package_id.rs │ │ ├── package_id_spec.rs │ │ ├── profiles.rs │ │ ├── registry.rs │ │ ├── resolver │ │ │ ├── conflict_cache.rs │ │ │ ├── context.rs │ │ │ ├── dep_cache.rs │ │ │ ├── encode.rs │ │ │ ├── errors.rs │ │ │ ├── features.rs │ │ │ ├── mod.rs │ │ │ ├── resolve.rs │ │ │ ├── types.rs │ │ │ └── version_prefs.rs │ │ ├── shell.rs │ │ ├── source │ │ │ ├── mod.rs │ │ │ └── source_id.rs │ │ ├── summary.rs │ │ └── workspace.rs │ ├── lib.rs │ ├── macros.rs │ ├── ops │ │ ├── cargo_add │ │ │ ├── crate_spec.rs │ │ │ └── mod.rs │ │ ├── cargo_clean.rs │ │ ├── cargo_compile │ │ │ ├── compile_filter.rs │ │ │ ├── mod.rs │ │ │ ├── packages.rs │ │ │ └── unit_generator.rs │ │ ├── cargo_config.rs │ │ ├── cargo_doc.rs │ │ ├── cargo_fetch.rs │ │ ├── cargo_generate_lockfile.rs │ │ ├── cargo_install.rs │ │ ├── cargo_new.rs │ │ ├── cargo_output_metadata.rs │ │ ├── cargo_package.rs │ │ ├── cargo_pkgid.rs │ │ ├── cargo_read_manifest.rs │ │ ├── cargo_remove.rs │ │ ├── cargo_run.rs │ │ ├── cargo_test.rs │ │ ├── cargo_uninstall.rs │ │ ├── common_for_install_and_uninstall.rs │ │ ├── fix.rs │ │ ├── lockfile.rs │ │ ├── mod.rs │ │ ├── registry │ │ │ ├── login.rs │ │ │ ├── logout.rs │ │ │ ├── mod.rs │ │ │ ├── owner.rs │ │ │ ├── publish.rs │ │ │ ├── search.rs │ │ │ └── yank.rs │ │ ├── resolve.rs │ │ ├── tree │ │ │ ├── format │ │ │ │ ├── mod.rs │ │ │ │ └── parse.rs │ │ │ ├── graph.rs │ │ │ └── mod.rs │ │ └── vendor.rs │ ├── sources │ │ ├── config.rs │ │ ├── directory.rs │ │ ├── git │ │ │ ├── known_hosts.rs │ │ │ ├── mod.rs │ │ │ ├── oxide.rs │ │ │ ├── source.rs │ │ │ └── utils.rs │ │ ├── mod.rs │ │ ├── path.rs │ │ ├── registry │ │ │ ├── download.rs │ │ │ ├── http_remote.rs │ │ │ ├── index.rs │ │ │ ├── local.rs │ │ │ ├── mod.rs │ │ │ └── remote.rs │ │ └── replaced.rs │ ├── util │ │ ├── auth │ │ │ ├── asymmetric.rs │ │ │ └── mod.rs │ │ ├── canonical_url.rs │ │ ├── command_prelude.rs │ │ ├── config │ │ │ ├── de.rs │ │ │ ├── environment.rs │ │ │ ├── key.rs │ │ │ ├── mod.rs │ │ │ ├── path.rs │ │ │ ├── target.rs │ │ │ └── value.rs │ │ ├── counter.rs │ │ ├── cpu.rs │ │ ├── dependency_queue.rs │ │ ├── diagnostic_server.rs │ │ ├── edit_distance.rs │ │ ├── errors.rs │ │ ├── flock.rs │ │ ├── graph.rs │ │ ├── hasher.rs │ │ ├── hex.rs │ │ ├── important_paths.rs │ │ ├── interning.rs │ │ ├── into_url.rs │ │ ├── into_url_with_base.rs │ │ ├── io.rs │ │ ├── job.rs │ │ ├── lockserver.rs │ │ ├── machine_message.rs │ │ ├── mod.rs │ │ ├── network │ │ │ ├── http.rs │ │ │ ├── mod.rs │ │ │ ├── proxy.rs │ │ │ ├── retry.rs │ │ │ └── sleep.rs │ │ ├── profile.rs │ │ ├── progress.rs │ │ ├── queue.rs │ │ ├── restricted_names.rs │ │ ├── rustc.rs │ │ ├── semver_ext.rs │ │ ├── to_semver.rs │ │ ├── toml │ │ │ ├── embedded.rs │ │ │ ├── mod.rs │ │ │ └── targets.rs │ │ ├── toml_mut │ │ │ ├── dependency.rs │ │ │ ├── manifest.rs │ │ │ └── mod.rs │ │ ├── vcs.rs │ │ └── workspace.rs │ └── version.rs ├── doc │ ├── .gitignore │ ├── README.md │ ├── book.toml │ ├── contrib │ │ ├── README.md │ │ ├── book.toml │ │ └── src │ │ │ ├── SUMMARY.md │ │ │ ├── design.md │ │ │ ├── implementation │ │ │ ├── architecture.md │ │ │ ├── console.md │ │ │ ├── debugging.md │ │ │ ├── filesystem.md │ │ │ ├── index.md │ │ │ └── subcommands.md │ │ │ ├── index.md │ │ │ ├── issues.md │ │ │ ├── process │ │ │ ├── index.md │ │ │ ├── release.md │ │ │ ├── unstable.md │ │ │ └── working-on-cargo.md │ │ │ ├── team.md │ │ │ └── tests │ │ │ ├── crater.md │ │ │ ├── index.md │ │ │ ├── profiling.md │ │ │ ├── running.md │ │ │ └── writing.md │ ├── man │ │ ├── cargo-add.md │ │ ├── cargo-bench.md │ │ ├── cargo-build.md │ │ ├── cargo-check.md │ │ ├── cargo-clean.md │ │ ├── cargo-doc.md │ │ ├── cargo-fetch.md │ │ ├── cargo-fix.md │ │ ├── cargo-generate-lockfile.md │ │ ├── cargo-help.md │ │ ├── cargo-init.md │ │ ├── cargo-install.md │ │ ├── cargo-locate-project.md │ │ ├── cargo-login.md │ │ ├── cargo-logout.md │ │ ├── cargo-metadata.md │ │ ├── cargo-new.md │ │ ├── cargo-owner.md │ │ ├── cargo-package.md │ │ ├── cargo-pkgid.md │ │ ├── cargo-publish.md │ │ ├── cargo-remove.md │ │ ├── cargo-report.md │ │ ├── cargo-run.md │ │ ├── cargo-rustc.md │ │ ├── cargo-rustdoc.md │ │ ├── cargo-search.md │ │ ├── cargo-test.md │ │ ├── cargo-tree.md │ │ ├── cargo-uninstall.md │ │ ├── cargo-update.md │ │ ├── cargo-vendor.md │ │ ├── cargo-verify-project.md │ │ ├── cargo-version.md │ │ ├── cargo-yank.md │ │ ├── cargo.md │ │ ├── generated_txt │ │ │ ├── cargo-add.txt │ │ │ ├── cargo-bench.txt │ │ │ ├── cargo-build.txt │ │ │ ├── cargo-check.txt │ │ │ ├── cargo-clean.txt │ │ │ ├── cargo-doc.txt │ │ │ ├── cargo-fetch.txt │ │ │ ├── cargo-fix.txt │ │ │ ├── cargo-generate-lockfile.txt │ │ │ ├── cargo-help.txt │ │ │ ├── cargo-init.txt │ │ │ ├── cargo-install.txt │ │ │ ├── cargo-locate-project.txt │ │ │ ├── cargo-login.txt │ │ │ ├── cargo-logout.txt │ │ │ ├── cargo-metadata.txt │ │ │ ├── cargo-new.txt │ │ │ ├── cargo-owner.txt │ │ │ ├── cargo-package.txt │ │ │ ├── cargo-pkgid.txt │ │ │ ├── cargo-publish.txt │ │ │ ├── cargo-remove.txt │ │ │ ├── cargo-report.txt │ │ │ ├── cargo-run.txt │ │ │ ├── cargo-rustc.txt │ │ │ ├── cargo-rustdoc.txt │ │ │ ├── cargo-search.txt │ │ │ ├── cargo-test.txt │ │ │ ├── cargo-tree.txt │ │ │ ├── cargo-uninstall.txt │ │ │ ├── cargo-update.txt │ │ │ ├── cargo-vendor.txt │ │ │ ├── cargo-verify-project.txt │ │ │ ├── cargo-version.txt │ │ │ ├── cargo-yank.txt │ │ │ └── cargo.txt │ │ └── includes │ │ │ ├── description-install-root.md │ │ │ ├── description-one-target.md │ │ │ ├── options-display.md │ │ │ ├── options-future-incompat.md │ │ │ ├── options-ignore-rust-version.md │ │ │ ├── options-index.md │ │ │ ├── options-jobs.md │ │ │ ├── options-keep-going.md │ │ │ ├── options-locked.md │ │ │ ├── options-manifest-path.md │ │ │ ├── options-message-format.md │ │ │ ├── options-new.md │ │ │ ├── options-profile-legacy-check.md │ │ │ ├── options-profile.md │ │ │ ├── options-registry.md │ │ │ ├── options-release.md │ │ │ ├── options-target-dir.md │ │ │ ├── options-target-triple.md │ │ │ ├── options-targets-bin-auto-built.md │ │ │ ├── options-targets-lib-bin.md │ │ │ ├── options-targets.md │ │ │ ├── options-test.md │ │ │ ├── options-timings.md │ │ │ ├── options-token.md │ │ │ ├── section-environment.md │ │ │ ├── section-exit-status.md │ │ │ ├── section-features.md │ │ │ ├── section-options-common.md │ │ │ ├── section-options-package.md │ │ │ └── section-package-selection.md │ ├── src │ │ ├── SUMMARY.md │ │ ├── appendix │ │ │ ├── git-authentication.md │ │ │ └── glossary.md │ │ ├── commands │ │ │ ├── build-commands.md │ │ │ ├── cargo-add.md │ │ │ ├── cargo-bench.md │ │ │ ├── cargo-build.md │ │ │ ├── cargo-check.md │ │ │ ├── cargo-clean.md │ │ │ ├── cargo-doc.md │ │ │ ├── cargo-fetch.md │ │ │ ├── cargo-fix.md │ │ │ ├── cargo-generate-lockfile.md │ │ │ ├── cargo-help.md │ │ │ ├── cargo-init.md │ │ │ ├── cargo-install.md │ │ │ ├── cargo-locate-project.md │ │ │ ├── cargo-login.md │ │ │ ├── cargo-logout.md │ │ │ ├── cargo-metadata.md │ │ │ ├── cargo-new.md │ │ │ ├── cargo-owner.md │ │ │ ├── cargo-package.md │ │ │ ├── cargo-pkgid.md │ │ │ ├── cargo-publish.md │ │ │ ├── cargo-remove.md │ │ │ ├── cargo-report.md │ │ │ ├── cargo-run.md │ │ │ ├── cargo-rustc.md │ │ │ ├── cargo-rustdoc.md │ │ │ ├── cargo-search.md │ │ │ ├── cargo-test.md │ │ │ ├── cargo-tree.md │ │ │ ├── cargo-uninstall.md │ │ │ ├── cargo-update.md │ │ │ ├── cargo-vendor.md │ │ │ ├── cargo-verify-project.md │ │ │ ├── cargo-version.md │ │ │ ├── cargo-yank.md │ │ │ ├── cargo.md │ │ │ ├── general-commands.md │ │ │ ├── index.md │ │ │ ├── manifest-commands.md │ │ │ ├── package-commands.md │ │ │ └── publishing-commands.md │ │ ├── faq.md │ │ ├── getting-started │ │ │ ├── first-steps.md │ │ │ ├── index.md │ │ │ └── installation.md │ │ ├── guide │ │ │ ├── build-cache.md │ │ │ ├── cargo-home.md │ │ │ ├── cargo-toml-vs-cargo-lock.md │ │ │ ├── continuous-integration.md │ │ │ ├── creating-a-new-project.md │ │ │ ├── dependencies.md │ │ │ ├── index.md │ │ │ ├── project-layout.md │ │ │ ├── tests.md │ │ │ ├── why-cargo-exists.md │ │ │ └── working-on-an-existing-project.md │ │ ├── images │ │ │ ├── Cargo-Logo-Small.png │ │ │ ├── auth-level-acl.png │ │ │ ├── build-info.png │ │ │ ├── build-unit-time.png │ │ │ ├── cargo-concurrency-over-time.png │ │ │ ├── org-level-acl.png │ │ │ └── winapi-features.svg │ │ ├── index.md │ │ └── reference │ │ │ ├── build-script-examples.md │ │ │ ├── build-scripts.md │ │ │ ├── cargo-targets.md │ │ │ ├── config.md │ │ │ ├── environment-variables.md │ │ │ ├── external-tools.md │ │ │ ├── features-examples.md │ │ │ ├── features.md │ │ │ ├── future-incompat-report.md │ │ │ ├── index.md │ │ │ ├── manifest.md │ │ │ ├── overriding-dependencies.md │ │ │ ├── pkgid-spec.md │ │ │ ├── profiles.md │ │ │ ├── publishing.md │ │ │ ├── registries.md │ │ │ ├── registry-index.md │ │ │ ├── registry-web-api.md │ │ │ ├── resolver.md │ │ │ ├── running-a-registry.md │ │ │ ├── semver.md │ │ │ ├── source-replacement.md │ │ │ ├── specifying-dependencies.md │ │ │ ├── timings.md │ │ │ ├── unstable.md │ │ │ └── workspaces.md │ └── theme │ │ ├── favicon.png │ │ └── head.hbs └── etc │ ├── _cargo │ ├── cargo.bashcomp.sh │ └── man │ ├── cargo-add.1 │ ├── cargo-bench.1 │ ├── cargo-build.1 │ ├── cargo-check.1 │ ├── cargo-clean.1 │ ├── cargo-doc.1 │ ├── cargo-fetch.1 │ ├── cargo-fix.1 │ ├── cargo-generate-lockfile.1 │ ├── cargo-help.1 │ ├── cargo-init.1 │ ├── cargo-install.1 │ ├── cargo-locate-project.1 │ ├── cargo-login.1 │ ├── cargo-logout.1 │ ├── cargo-metadata.1 │ ├── cargo-new.1 │ ├── cargo-owner.1 │ ├── cargo-package.1 │ ├── cargo-pkgid.1 │ ├── cargo-publish.1 │ ├── cargo-remove.1 │ ├── cargo-report.1 │ ├── cargo-run.1 │ ├── cargo-rustc.1 │ ├── cargo-rustdoc.1 │ ├── cargo-search.1 │ ├── cargo-test.1 │ ├── cargo-tree.1 │ ├── cargo-uninstall.1 │ ├── cargo-update.1 │ ├── cargo-vendor.1 │ ├── cargo-verify-project.1 │ ├── cargo-version.1 │ ├── cargo-yank.1 │ └── cargo.1 ├── tests ├── build-std │ └── main.rs └── testsuite │ ├── advanced_env.rs │ ├── alt_registry.rs │ ├── artifact_dep.rs │ ├── bad_config.rs │ ├── bad_manifest_path.rs │ ├── bench.rs │ ├── binary_name.rs │ ├── build.rs │ ├── build_plan.rs │ ├── build_script.rs │ ├── build_script_env.rs │ ├── build_script_extra_link_arg.rs │ ├── cache_messages.rs │ ├── cargo_add │ ├── add-basic.in │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── add_basic │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── add_multiple │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── add_normalized_name_external │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── add_toolchain │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── build │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── build_prefer_existing_version │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── dependency │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── change_rename_target │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── cyclic_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── default_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── deprecated_default_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── deprecated_section │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── detect_workspace_inherit │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── detect_workspace_inherit_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── detect_workspace_inherit_optional │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dev_build_conflict │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dev_prefer_existing_version │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── dependency │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dry_run │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── empty_dep_table │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_empty │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_multiple_occurrences │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_preserve │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_spaced_values │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_unknown │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── features_unknown_no_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_branch │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_conflicts_namever │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_dev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_inferred_name │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_inferred_name_multiple │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_multiple_names │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_normalized_name │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_registry │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_rev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_tag │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── infer_prerelease │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_arg │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_git_name │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_key_inherit_dependency │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_key_overwrite_inherit_dependency │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_key_rename_inherit_dependency │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency-alt │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency-alt │ │ │ │ └── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_manifest │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_name_external │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_path │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_path_name │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_path_self │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_target_empty │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_vers │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── list_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── list_features_path │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── optional │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── list_features_path_no_default │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── optional │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── locked_changed │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── locked_unchanged │ │ ├── in │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── lockfile_updated │ │ ├── in │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── manifest_path_package │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── merge_activated_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── mod.rs │ ├── multiple_conflicts_with_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── multiple_conflicts_with_rename │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── namever │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── no_args │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── no_default_features │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── no_optional │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── offline_empty_cache │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── optional │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_default_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_default_features_with_no_default_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_git_with_path │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_inherit_features_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_inherit_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_inherit_optional_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_inline_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_name_dev_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── dependency │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_name_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── dependency │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_no_default_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_no_default_features_with_default_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_no_optional │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_no_optional_with_optional │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_optional │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_optional_with_no_optional │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_path_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── dependency │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_path_with_version │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_preserves_inline_table │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_rename_with_no_rename │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_rename_with_rename │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_rename_with_rename_noop │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_version_with_git │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_version_with_path │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_with_rename │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_workspace_dep │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── overwrite_workspace_dep_features │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── path │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── path_dev │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── path_inferred_name │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── path_inferred_name_conflicts_full_feature │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── optional │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── path_normalized_name │ │ ├── in │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── preserve_features_table │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── preserve_sorted │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── preserve_unsorted │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── quiet │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── registry │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── rename │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── require_weak │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── rust_version_ignore │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── rust_version_incompatible │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── rust_version_latest │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── rust_version_older │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── sorted_table_with_dotted_item │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── target │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── target_cfg │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── unknown_inherited_feature │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── vers │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── workspace_name │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── workspace_path │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── primary │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dependency │ │ │ │ └── Cargo.toml │ │ │ └── primary │ │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ └── workspace_path_dev │ │ ├── in │ │ ├── Cargo.toml │ │ ├── dependency │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── primary │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ ├── Cargo.toml │ │ ├── dependency │ │ │ └── Cargo.toml │ │ └── primary │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── cargo_alias_config.rs │ ├── cargo_command.rs │ ├── cargo_config.rs │ ├── cargo_env_config.rs │ ├── cargo_features.rs │ ├── cargo_new │ ├── inherit_workspace_lints │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inherit_workspace_package_table.in │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── inherit_workspace_package_table │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inherit_workspace_package_table_with_edition │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inherit_workspace_package_table_with_registry │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inherit_workspace_package_table_without_version │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── mod.rs │ └── not_inherit_workspace_package_table_if_not_memebers │ │ ├── in │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ ├── Cargo.toml │ │ ├── foo │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── src │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── cargo_remove │ ├── avoid_empty_tables │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── build │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── dry_run │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── gc_patch │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── gc_profile │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── gc_replace │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── my-package │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── my-package │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_arg │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_dep │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_package │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dep-a │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── dep-b │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_package_multiple │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dep-a │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── dep-b │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_section │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_section_dep │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_target │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_target_dep │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── mod.rs │ ├── multiple_deps │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── multiple_dev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── no_arg │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── offline │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── optional_dep_feature │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── optional_feature │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── package │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── dep-a │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── dep-b │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── remove-basic.in │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── remove-package.in │ │ ├── Cargo.toml │ │ ├── dep-a │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── dep-b │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── remove-target.in │ │ └── Cargo.toml │ ├── remove_basic │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── target │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── target_build │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── target_dev │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ └── Cargo.toml │ │ ├── stderr.log │ │ └── stdout.log │ ├── update_lock_file │ │ ├── in │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── workspace │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── my-package │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── my-package │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── workspace_non_virtual │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ └── my-member │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── my-member │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ └── workspace_preserved │ │ ├── in │ │ ├── Cargo.toml │ │ ├── my-other-package │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── my-package │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ ├── Cargo.toml │ │ ├── my-other-package │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── my-package │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── cargo_targets.rs │ ├── cfg.rs │ ├── check.rs │ ├── check_cfg.rs │ ├── clean.rs │ ├── collisions.rs │ ├── concurrent.rs │ ├── config.rs │ ├── config_cli.rs │ ├── config_include.rs │ ├── corrupt_git.rs │ ├── credential_process.rs │ ├── cross_compile.rs │ ├── cross_publish.rs │ ├── custom_target.rs │ ├── death.rs │ ├── dep_info.rs │ ├── direct_minimal_versions.rs │ ├── directory.rs │ ├── doc.rs │ ├── docscrape.rs │ ├── edition.rs │ ├── error.rs │ ├── features.rs │ ├── features2.rs │ ├── features_namespaced.rs │ ├── fetch.rs │ ├── fix.rs │ ├── freshness.rs │ ├── future_incompat_report.rs │ ├── generate_lockfile.rs │ ├── git.rs │ ├── git_auth.rs │ ├── git_gc.rs │ ├── git_shallow.rs │ ├── glob_targets.rs │ ├── help.rs │ ├── https.rs │ ├── inheritable_workspace_fields.rs │ ├── init │ ├── auto_git │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_explicit │ │ ├── in │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_explicit_nosrc │ │ ├── in │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_implicit │ │ ├── in │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_implicit_namenosrc │ │ ├── in │ │ │ └── case.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── case.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_implicit_namesrc │ │ ├── in │ │ │ └── src │ │ │ │ └── case.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── case.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── bin_already_exists_implicit_nosrc │ │ ├── in │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── both_lib_and_bin │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── cant_create_library_when_both_binlib_present │ │ ├── in │ │ │ ├── case.rs │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── confused_by_multiple_lib_files │ │ ├── in │ │ │ ├── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── lib.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── creates_binary_when_both_binlib_present │ │ ├── in │ │ │ ├── case.rs │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── case.rs │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── creates_binary_when_instructed_and_has_lib_file │ │ ├── in │ │ │ └── case.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── case.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── creates_library_when_instructed_and_has_bin_file │ │ ├── in │ │ │ └── case.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── case.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── empty_dir │ │ ├── .keep │ │ └── mod.rs │ ├── explicit_bin_with_git │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── formats_source │ │ ├── in │ │ │ └── rustfmt.toml │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── rustfmt.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── fossil_autodetect │ │ ├── in │ │ │ └── .fossil │ │ │ │ └── .keep │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .fossil-settings │ │ │ │ ├── clean-glob │ │ │ │ └── ignore-glob │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_autodetect │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── git_ignore_exists_no_conflicting_entries │ │ ├── in │ │ │ └── .gitignore │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── ignores_failure_to_format_source │ │ ├── in │ │ │ └── rustfmt.toml │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── rustfmt.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inferred_bin_with_git │ │ ├── in │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inferred_lib_with_git │ │ ├── in │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── inherit_workspace_package_table │ │ ├── in │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ │ └── foo │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── invalid_dir_name │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── lib_already_exists_nosrc │ │ ├── in │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── lib_already_exists_src │ │ ├── in │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── mercurial_autodetect │ │ ├── in │ │ │ └── .hg │ │ │ │ └── .keep │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .hgignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── mod.rs │ ├── multibin_project_name_clash │ │ ├── in │ │ │ ├── case.rs │ │ │ └── main.rs │ │ ├── mod.rs │ │ ├── out │ │ │ ├── case.rs │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── no_filename │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── path_contains_separator │ │ ├── in │ │ │ └── .keep │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── pijul_autodetect │ │ ├── in │ │ │ └── .pijul │ │ │ │ └── .keep │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .ignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── reserved_name │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_bin │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_git │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_git_ignore_exists │ │ ├── in │ │ │ └── .gitignore │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_hg │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .hgignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_hg_ignore_exists │ │ ├── in │ │ │ ├── .hg │ │ │ │ └── .keep │ │ │ └── .hgignore │ │ ├── mod.rs │ │ ├── out │ │ │ ├── .hgignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── simple_lib │ │ ├── in │ │ ├── mod.rs │ │ ├── out │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── unknown_flags │ │ ├── mod.rs │ │ ├── stderr.log │ │ └── stdout.log │ └── with_argument │ │ ├── in │ │ └── foo │ │ │ └── .keep │ │ ├── mod.rs │ │ ├── out │ │ └── foo │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ │ ├── stderr.log │ │ └── stdout.log │ ├── install.rs │ ├── install_upgrade.rs │ ├── jobserver.rs │ ├── lints.rs │ ├── list_availables.rs │ ├── local_registry.rs │ ├── locate_project.rs │ ├── lockfile_compat.rs │ ├── login.rs │ ├── logout.rs │ ├── lto.rs │ ├── main.rs │ ├── member_discovery.rs │ ├── member_errors.rs │ ├── message_format.rs │ ├── messages.rs │ ├── metabuild.rs │ ├── metadata.rs │ ├── minimal_versions.rs │ ├── mock-std │ ├── Cargo.toml │ └── library │ │ ├── alloc │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── compiler_builtins │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── core │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── panic_unwind │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── proc_macro │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── rustc-std-workspace-alloc │ │ ├── Cargo.toml │ │ └── lib.rs │ │ ├── rustc-std-workspace-core │ │ ├── Cargo.toml │ │ └── lib.rs │ │ ├── rustc-std-workspace-std │ │ ├── Cargo.toml │ │ └── lib.rs │ │ ├── std │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ ├── sysroot │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ │ └── test │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs │ ├── multitarget.rs │ ├── net_config.rs │ ├── new.rs │ ├── offline.rs │ ├── old_cargos.rs │ ├── out_dir.rs │ ├── owner.rs │ ├── package.rs │ ├── package_features.rs │ ├── patch.rs │ ├── path.rs │ ├── paths.rs │ ├── pkgid.rs │ ├── plugins.rs │ ├── proc_macro.rs │ ├── profile_config.rs │ ├── profile_custom.rs │ ├── profile_overrides.rs │ ├── profile_targets.rs │ ├── profiles.rs │ ├── progress.rs │ ├── pub_priv.rs │ ├── publish.rs │ ├── publish_lockfile.rs │ ├── read_manifest.rs │ ├── registry.rs │ ├── registry_auth.rs │ ├── rename_deps.rs │ ├── replace.rs │ ├── required_features.rs │ ├── run.rs │ ├── rust_version.rs │ ├── rustc.rs │ ├── rustc_info_cache.rs │ ├── rustdoc.rs │ ├── rustdoc_extern_html.rs │ ├── rustdocflags.rs │ ├── rustflags.rs │ ├── rustup.rs │ ├── script.rs │ ├── search.rs │ ├── shell_quoting.rs │ ├── source_replacement.rs │ ├── ssh.rs │ ├── standard_lib.rs │ ├── test.rs │ ├── timings.rs │ ├── tool_paths.rs │ ├── tree.rs │ ├── tree_graph_features.rs │ ├── unit_graph.rs │ ├── update.rs │ ├── vendor.rs │ ├── verify_project.rs │ ├── version.rs │ ├── warn_on_failure.rs │ ├── weak_dep_features.rs │ ├── workspaces.rs │ └── yank.rs └── triagebot.toml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.github/workflows/contrib.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/.ignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /LICENSE-THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/LICENSE-THIRD-PARTY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/README.md -------------------------------------------------------------------------------- /benches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/README.md -------------------------------------------------------------------------------- /benches/benchsuite/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/benchsuite/Cargo.toml -------------------------------------------------------------------------------- /benches/benchsuite/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/benchsuite/src/lib.rs -------------------------------------------------------------------------------- /benches/capture/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/capture/Cargo.toml -------------------------------------------------------------------------------- /benches/capture/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/capture/src/main.rs -------------------------------------------------------------------------------- /benches/workspaces/cargo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/cargo.tgz -------------------------------------------------------------------------------- /benches/workspaces/diem.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/diem.tgz -------------------------------------------------------------------------------- /benches/workspaces/empty.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/empty.tgz -------------------------------------------------------------------------------- /benches/workspaces/gecko-dev.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/gecko-dev.tgz -------------------------------------------------------------------------------- /benches/workspaces/rust.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/rust.tgz -------------------------------------------------------------------------------- /benches/workspaces/servo.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/servo.tgz -------------------------------------------------------------------------------- /benches/workspaces/substrate.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/substrate.tgz -------------------------------------------------------------------------------- /benches/workspaces/tikv.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/tikv.tgz -------------------------------------------------------------------------------- /benches/workspaces/toml-rs.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/benches/workspaces/toml-rs.tgz -------------------------------------------------------------------------------- /ci/clean-test-output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/ci/clean-test-output.sh -------------------------------------------------------------------------------- /ci/dump-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/ci/dump-environment.sh -------------------------------------------------------------------------------- /ci/fetch-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/ci/fetch-smoke-test.sh -------------------------------------------------------------------------------- /ci/validate-man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/ci/validate-man.sh -------------------------------------------------------------------------------- /ci/validate-version-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/ci/validate-version-bump.sh -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/clippy.toml -------------------------------------------------------------------------------- /crates/cargo-platform/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-platform/Cargo.toml -------------------------------------------------------------------------------- /crates/cargo-platform/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/cargo-platform/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/cargo-platform/src/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-platform/src/cfg.rs -------------------------------------------------------------------------------- /crates/cargo-platform/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-platform/src/error.rs -------------------------------------------------------------------------------- /crates/cargo-platform/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-platform/src/lib.rs -------------------------------------------------------------------------------- /crates/cargo-test-macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-macro/Cargo.toml -------------------------------------------------------------------------------- /crates/cargo-test-macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-macro/src/lib.rs -------------------------------------------------------------------------------- /crates/cargo-test-support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-support/Cargo.toml -------------------------------------------------------------------------------- /crates/cargo-test-support/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-support/build.rs -------------------------------------------------------------------------------- /crates/cargo-test-support/containers/apache/bar/src/lib.rs: -------------------------------------------------------------------------------- 1 | // Intentionally blank. 2 | -------------------------------------------------------------------------------- /crates/cargo-test-support/containers/sshd/bar/src/lib.rs: -------------------------------------------------------------------------------- 1 | // Intentionally blank. 2 | -------------------------------------------------------------------------------- /crates/cargo-test-support/src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-support/src/git.rs -------------------------------------------------------------------------------- /crates/cargo-test-support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-test-support/src/lib.rs -------------------------------------------------------------------------------- /crates/cargo-util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/Cargo.toml -------------------------------------------------------------------------------- /crates/cargo-util/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/cargo-util/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/cargo-util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/src/lib.rs -------------------------------------------------------------------------------- /crates/cargo-util/src/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/src/paths.rs -------------------------------------------------------------------------------- /crates/cargo-util/src/read2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/src/read2.rs -------------------------------------------------------------------------------- /crates/cargo-util/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/src/registry.rs -------------------------------------------------------------------------------- /crates/cargo-util/src/sha256.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/cargo-util/src/sha256.rs -------------------------------------------------------------------------------- /crates/crates-io/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/crates-io/Cargo.toml -------------------------------------------------------------------------------- /crates/crates-io/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/crates-io/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/crates-io/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/crates-io/lib.rs -------------------------------------------------------------------------------- /crates/home/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/CHANGELOG.md -------------------------------------------------------------------------------- /crates/home/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/Cargo.toml -------------------------------------------------------------------------------- /crates/home/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/home/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/README.md -------------------------------------------------------------------------------- /crates/home/src/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/src/env.rs -------------------------------------------------------------------------------- /crates/home/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/src/lib.rs -------------------------------------------------------------------------------- /crates/home/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/home/src/windows.rs -------------------------------------------------------------------------------- /crates/mdman/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/Cargo.toml -------------------------------------------------------------------------------- /crates/mdman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/README.md -------------------------------------------------------------------------------- /crates/mdman/doc/mdman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/doc/mdman.md -------------------------------------------------------------------------------- /crates/mdman/doc/out/mdman.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/doc/out/mdman.1 -------------------------------------------------------------------------------- /crates/mdman/doc/out/mdman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/doc/out/mdman.md -------------------------------------------------------------------------------- /crates/mdman/doc/out/mdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/doc/out/mdman.txt -------------------------------------------------------------------------------- /crates/mdman/src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/format.rs -------------------------------------------------------------------------------- /crates/mdman/src/format/man.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/format/man.rs -------------------------------------------------------------------------------- /crates/mdman/src/format/md.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/format/md.rs -------------------------------------------------------------------------------- /crates/mdman/src/format/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/format/text.rs -------------------------------------------------------------------------------- /crates/mdman/src/hbs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/hbs.rs -------------------------------------------------------------------------------- /crates/mdman/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/lib.rs -------------------------------------------------------------------------------- /crates/mdman/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/main.rs -------------------------------------------------------------------------------- /crates/mdman/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/src/util.rs -------------------------------------------------------------------------------- /crates/mdman/tests/compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/tests/compare.rs -------------------------------------------------------------------------------- /crates/mdman/tests/compare/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/tests/compare/links.md -------------------------------------------------------------------------------- /crates/mdman/tests/invalid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/mdman/tests/invalid.rs -------------------------------------------------------------------------------- /crates/resolver-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/resolver-tests/Cargo.toml -------------------------------------------------------------------------------- /crates/resolver-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/resolver-tests/src/lib.rs -------------------------------------------------------------------------------- /crates/semver-check/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/semver-check/Cargo.toml -------------------------------------------------------------------------------- /crates/semver-check/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/semver-check/src/main.rs -------------------------------------------------------------------------------- /crates/xtask-build-man/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/crates/xtask-build-man/Cargo.toml -------------------------------------------------------------------------------- /credential/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/credential/README.md -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/deny.toml -------------------------------------------------------------------------------- /publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/publish.py -------------------------------------------------------------------------------- /src/bin/cargo/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/cli.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/add.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/bench.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/build.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/check.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/clean.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/config.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/doc.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/fetch.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/fix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/fix.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/help.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/init.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/install.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/login.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/logout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/logout.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/mod.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/new.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/owner.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/package.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/pkgid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/pkgid.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/publish.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/remove.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/report.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/run.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/rustc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/rustc.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/rustdoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/rustdoc.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/search.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/test.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/tree.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/update.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/vendor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/vendor.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/version.rs -------------------------------------------------------------------------------- /src/bin/cargo/commands/yank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/commands/yank.rs -------------------------------------------------------------------------------- /src/bin/cargo/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/bin/cargo/main.rs -------------------------------------------------------------------------------- /src/cargo/core/compiler/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/compiler/layout.rs -------------------------------------------------------------------------------- /src/cargo/core/compiler/links.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/compiler/links.rs -------------------------------------------------------------------------------- /src/cargo/core/compiler/lto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/compiler/lto.rs -------------------------------------------------------------------------------- /src/cargo/core/compiler/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/compiler/mod.rs -------------------------------------------------------------------------------- /src/cargo/core/compiler/unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/compiler/unit.rs -------------------------------------------------------------------------------- /src/cargo/core/dependency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/dependency.rs -------------------------------------------------------------------------------- /src/cargo/core/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/features.rs -------------------------------------------------------------------------------- /src/cargo/core/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/manifest.rs -------------------------------------------------------------------------------- /src/cargo/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/mod.rs -------------------------------------------------------------------------------- /src/cargo/core/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/package.rs -------------------------------------------------------------------------------- /src/cargo/core/package_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/package_id.rs -------------------------------------------------------------------------------- /src/cargo/core/package_id_spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/package_id_spec.rs -------------------------------------------------------------------------------- /src/cargo/core/profiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/profiles.rs -------------------------------------------------------------------------------- /src/cargo/core/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/registry.rs -------------------------------------------------------------------------------- /src/cargo/core/resolver/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/resolver/encode.rs -------------------------------------------------------------------------------- /src/cargo/core/resolver/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/resolver/errors.rs -------------------------------------------------------------------------------- /src/cargo/core/resolver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/resolver/mod.rs -------------------------------------------------------------------------------- /src/cargo/core/resolver/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/resolver/types.rs -------------------------------------------------------------------------------- /src/cargo/core/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/shell.rs -------------------------------------------------------------------------------- /src/cargo/core/source/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/source/mod.rs -------------------------------------------------------------------------------- /src/cargo/core/summary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/summary.rs -------------------------------------------------------------------------------- /src/cargo/core/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/core/workspace.rs -------------------------------------------------------------------------------- /src/cargo/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/lib.rs -------------------------------------------------------------------------------- /src/cargo/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/macros.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_add/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_add/mod.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_clean.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_config.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_doc.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_fetch.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_install.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_new.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_package.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_pkgid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_pkgid.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_remove.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_run.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_test.rs -------------------------------------------------------------------------------- /src/cargo/ops/cargo_uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/cargo_uninstall.rs -------------------------------------------------------------------------------- /src/cargo/ops/fix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/fix.rs -------------------------------------------------------------------------------- /src/cargo/ops/lockfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/lockfile.rs -------------------------------------------------------------------------------- /src/cargo/ops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/mod.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/login.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/logout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/logout.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/mod.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/owner.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/publish.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/search.rs -------------------------------------------------------------------------------- /src/cargo/ops/registry/yank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/registry/yank.rs -------------------------------------------------------------------------------- /src/cargo/ops/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/resolve.rs -------------------------------------------------------------------------------- /src/cargo/ops/tree/format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/tree/format/mod.rs -------------------------------------------------------------------------------- /src/cargo/ops/tree/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/tree/graph.rs -------------------------------------------------------------------------------- /src/cargo/ops/tree/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/tree/mod.rs -------------------------------------------------------------------------------- /src/cargo/ops/vendor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/ops/vendor.rs -------------------------------------------------------------------------------- /src/cargo/sources/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/config.rs -------------------------------------------------------------------------------- /src/cargo/sources/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/directory.rs -------------------------------------------------------------------------------- /src/cargo/sources/git/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/git/mod.rs -------------------------------------------------------------------------------- /src/cargo/sources/git/oxide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/git/oxide.rs -------------------------------------------------------------------------------- /src/cargo/sources/git/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/git/source.rs -------------------------------------------------------------------------------- /src/cargo/sources/git/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/git/utils.rs -------------------------------------------------------------------------------- /src/cargo/sources/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/mod.rs -------------------------------------------------------------------------------- /src/cargo/sources/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/path.rs -------------------------------------------------------------------------------- /src/cargo/sources/registry/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/registry/mod.rs -------------------------------------------------------------------------------- /src/cargo/sources/replaced.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/sources/replaced.rs -------------------------------------------------------------------------------- /src/cargo/util/auth/asymmetric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/auth/asymmetric.rs -------------------------------------------------------------------------------- /src/cargo/util/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/auth/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/canonical_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/canonical_url.rs -------------------------------------------------------------------------------- /src/cargo/util/command_prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/command_prelude.rs -------------------------------------------------------------------------------- /src/cargo/util/config/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/de.rs -------------------------------------------------------------------------------- /src/cargo/util/config/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/key.rs -------------------------------------------------------------------------------- /src/cargo/util/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/config/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/path.rs -------------------------------------------------------------------------------- /src/cargo/util/config/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/target.rs -------------------------------------------------------------------------------- /src/cargo/util/config/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/config/value.rs -------------------------------------------------------------------------------- /src/cargo/util/counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/counter.rs -------------------------------------------------------------------------------- /src/cargo/util/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/cpu.rs -------------------------------------------------------------------------------- /src/cargo/util/edit_distance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/edit_distance.rs -------------------------------------------------------------------------------- /src/cargo/util/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/errors.rs -------------------------------------------------------------------------------- /src/cargo/util/flock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/flock.rs -------------------------------------------------------------------------------- /src/cargo/util/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/graph.rs -------------------------------------------------------------------------------- /src/cargo/util/hasher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/hasher.rs -------------------------------------------------------------------------------- /src/cargo/util/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/hex.rs -------------------------------------------------------------------------------- /src/cargo/util/important_paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/important_paths.rs -------------------------------------------------------------------------------- /src/cargo/util/interning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/interning.rs -------------------------------------------------------------------------------- /src/cargo/util/into_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/into_url.rs -------------------------------------------------------------------------------- /src/cargo/util/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/io.rs -------------------------------------------------------------------------------- /src/cargo/util/job.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/job.rs -------------------------------------------------------------------------------- /src/cargo/util/lockserver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/lockserver.rs -------------------------------------------------------------------------------- /src/cargo/util/machine_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/machine_message.rs -------------------------------------------------------------------------------- /src/cargo/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/network/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/network/http.rs -------------------------------------------------------------------------------- /src/cargo/util/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/network/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/network/proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/network/proxy.rs -------------------------------------------------------------------------------- /src/cargo/util/network/retry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/network/retry.rs -------------------------------------------------------------------------------- /src/cargo/util/network/sleep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/network/sleep.rs -------------------------------------------------------------------------------- /src/cargo/util/profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/profile.rs -------------------------------------------------------------------------------- /src/cargo/util/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/progress.rs -------------------------------------------------------------------------------- /src/cargo/util/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/queue.rs -------------------------------------------------------------------------------- /src/cargo/util/rustc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/rustc.rs -------------------------------------------------------------------------------- /src/cargo/util/semver_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/semver_ext.rs -------------------------------------------------------------------------------- /src/cargo/util/to_semver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/to_semver.rs -------------------------------------------------------------------------------- /src/cargo/util/toml/embedded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/toml/embedded.rs -------------------------------------------------------------------------------- /src/cargo/util/toml/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/toml/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/toml/targets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/toml/targets.rs -------------------------------------------------------------------------------- /src/cargo/util/toml_mut/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/toml_mut/mod.rs -------------------------------------------------------------------------------- /src/cargo/util/vcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/vcs.rs -------------------------------------------------------------------------------- /src/cargo/util/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/util/workspace.rs -------------------------------------------------------------------------------- /src/cargo/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/cargo/version.rs -------------------------------------------------------------------------------- /src/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/.gitignore -------------------------------------------------------------------------------- /src/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/README.md -------------------------------------------------------------------------------- /src/doc/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/book.toml -------------------------------------------------------------------------------- /src/doc/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/README.md -------------------------------------------------------------------------------- /src/doc/contrib/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/book.toml -------------------------------------------------------------------------------- /src/doc/contrib/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/src/SUMMARY.md -------------------------------------------------------------------------------- /src/doc/contrib/src/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/src/design.md -------------------------------------------------------------------------------- /src/doc/contrib/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/src/index.md -------------------------------------------------------------------------------- /src/doc/contrib/src/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/src/issues.md -------------------------------------------------------------------------------- /src/doc/contrib/src/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/contrib/src/team.md -------------------------------------------------------------------------------- /src/doc/man/cargo-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-add.md -------------------------------------------------------------------------------- /src/doc/man/cargo-bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-bench.md -------------------------------------------------------------------------------- /src/doc/man/cargo-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-build.md -------------------------------------------------------------------------------- /src/doc/man/cargo-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-check.md -------------------------------------------------------------------------------- /src/doc/man/cargo-clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-clean.md -------------------------------------------------------------------------------- /src/doc/man/cargo-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-doc.md -------------------------------------------------------------------------------- /src/doc/man/cargo-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-fetch.md -------------------------------------------------------------------------------- /src/doc/man/cargo-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-fix.md -------------------------------------------------------------------------------- /src/doc/man/cargo-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-help.md -------------------------------------------------------------------------------- /src/doc/man/cargo-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-init.md -------------------------------------------------------------------------------- /src/doc/man/cargo-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-install.md -------------------------------------------------------------------------------- /src/doc/man/cargo-login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-login.md -------------------------------------------------------------------------------- /src/doc/man/cargo-logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-logout.md -------------------------------------------------------------------------------- /src/doc/man/cargo-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-metadata.md -------------------------------------------------------------------------------- /src/doc/man/cargo-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-new.md -------------------------------------------------------------------------------- /src/doc/man/cargo-owner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-owner.md -------------------------------------------------------------------------------- /src/doc/man/cargo-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-package.md -------------------------------------------------------------------------------- /src/doc/man/cargo-pkgid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-pkgid.md -------------------------------------------------------------------------------- /src/doc/man/cargo-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-publish.md -------------------------------------------------------------------------------- /src/doc/man/cargo-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-remove.md -------------------------------------------------------------------------------- /src/doc/man/cargo-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-report.md -------------------------------------------------------------------------------- /src/doc/man/cargo-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-run.md -------------------------------------------------------------------------------- /src/doc/man/cargo-rustc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-rustc.md -------------------------------------------------------------------------------- /src/doc/man/cargo-rustdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-rustdoc.md -------------------------------------------------------------------------------- /src/doc/man/cargo-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-search.md -------------------------------------------------------------------------------- /src/doc/man/cargo-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-test.md -------------------------------------------------------------------------------- /src/doc/man/cargo-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-tree.md -------------------------------------------------------------------------------- /src/doc/man/cargo-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-uninstall.md -------------------------------------------------------------------------------- /src/doc/man/cargo-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-update.md -------------------------------------------------------------------------------- /src/doc/man/cargo-vendor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-vendor.md -------------------------------------------------------------------------------- /src/doc/man/cargo-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-version.md -------------------------------------------------------------------------------- /src/doc/man/cargo-yank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo-yank.md -------------------------------------------------------------------------------- /src/doc/man/cargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/man/cargo.md -------------------------------------------------------------------------------- /src/doc/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/SUMMARY.md -------------------------------------------------------------------------------- /src/doc/src/appendix/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/appendix/glossary.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo-add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo-add.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo-doc.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo-fix.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo-new.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo-run.md -------------------------------------------------------------------------------- /src/doc/src/commands/cargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/cargo.md -------------------------------------------------------------------------------- /src/doc/src/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/commands/index.md -------------------------------------------------------------------------------- /src/doc/src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/faq.md -------------------------------------------------------------------------------- /src/doc/src/guide/build-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/guide/build-cache.md -------------------------------------------------------------------------------- /src/doc/src/guide/cargo-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/guide/cargo-home.md -------------------------------------------------------------------------------- /src/doc/src/guide/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/guide/dependencies.md -------------------------------------------------------------------------------- /src/doc/src/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/guide/index.md -------------------------------------------------------------------------------- /src/doc/src/guide/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/guide/tests.md -------------------------------------------------------------------------------- /src/doc/src/images/build-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/images/build-info.png -------------------------------------------------------------------------------- /src/doc/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/index.md -------------------------------------------------------------------------------- /src/doc/src/reference/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/config.md -------------------------------------------------------------------------------- /src/doc/src/reference/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/features.md -------------------------------------------------------------------------------- /src/doc/src/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/index.md -------------------------------------------------------------------------------- /src/doc/src/reference/manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/manifest.md -------------------------------------------------------------------------------- /src/doc/src/reference/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/profiles.md -------------------------------------------------------------------------------- /src/doc/src/reference/resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/resolver.md -------------------------------------------------------------------------------- /src/doc/src/reference/semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/semver.md -------------------------------------------------------------------------------- /src/doc/src/reference/timings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/timings.md -------------------------------------------------------------------------------- /src/doc/src/reference/unstable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/src/reference/unstable.md -------------------------------------------------------------------------------- /src/doc/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/theme/favicon.png -------------------------------------------------------------------------------- /src/doc/theme/head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/doc/theme/head.hbs -------------------------------------------------------------------------------- /src/etc/_cargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/_cargo -------------------------------------------------------------------------------- /src/etc/cargo.bashcomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/cargo.bashcomp.sh -------------------------------------------------------------------------------- /src/etc/man/cargo-add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-add.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-bench.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-bench.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-build.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-build.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-check.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-check.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-clean.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-clean.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-doc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-doc.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-fetch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-fetch.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-fix.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-fix.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-help.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-help.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-init.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-install.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-install.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-login.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-login.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-logout.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-logout.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-metadata.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-metadata.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-new.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-new.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-owner.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-owner.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-package.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-package.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-pkgid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-pkgid.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-publish.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-publish.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-remove.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-remove.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-report.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-report.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-run.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-run.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-rustc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-rustc.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-rustdoc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-rustdoc.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-search.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-search.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-test.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-tree.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-tree.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-uninstall.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-uninstall.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-update.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-vendor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-vendor.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-version.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-version.1 -------------------------------------------------------------------------------- /src/etc/man/cargo-yank.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo-yank.1 -------------------------------------------------------------------------------- /src/etc/man/cargo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/src/etc/man/cargo.1 -------------------------------------------------------------------------------- /tests/build-std/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/build-std/main.rs -------------------------------------------------------------------------------- /tests/testsuite/advanced_env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/advanced_env.rs -------------------------------------------------------------------------------- /tests/testsuite/alt_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/alt_registry.rs -------------------------------------------------------------------------------- /tests/testsuite/artifact_dep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/artifact_dep.rs -------------------------------------------------------------------------------- /tests/testsuite/bad_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/bad_config.rs -------------------------------------------------------------------------------- /tests/testsuite/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/bench.rs -------------------------------------------------------------------------------- /tests/testsuite/binary_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/binary_name.rs -------------------------------------------------------------------------------- /tests/testsuite/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/build.rs -------------------------------------------------------------------------------- /tests/testsuite/build_plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/build_plan.rs -------------------------------------------------------------------------------- /tests/testsuite/build_script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/build_script.rs -------------------------------------------------------------------------------- /tests/testsuite/cache_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cache_messages.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add-basic.in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_basic/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_basic/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_multiple/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_multiple/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_normalized_name_external/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_normalized_name_external/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_toolchain/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/add_toolchain/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/build/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/build/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/build_prefer_existing_version/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/build_prefer_existing_version/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/build_prefer_existing_version/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/change_rename_target/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/change_rename_target/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/cyclic_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/cyclic_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/default_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/deprecated_default_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/deprecated_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/deprecated_section/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/deprecated_section/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_features/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_features/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_optional/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_optional/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/detect_workspace_inherit_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev_build_conflict/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev_build_conflict/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev_prefer_existing_version/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev_prefer_existing_version/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dev_prefer_existing_version/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dry_run/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/dry_run/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/empty_dep_table/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/empty_dep_table/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_empty/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_empty/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_multiple_occurrences/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_multiple_occurrences/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_preserve/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_preserve/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_spaced_values/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_spaced_values/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_unknown/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_unknown/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_unknown_no_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/features_unknown_no_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_branch/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_branch/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_conflicts_namever/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_conflicts_namever/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_dev/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_inferred_name/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_inferred_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_inferred_name_multiple/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_inferred_name_multiple/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_multiple_names/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_multiple_names/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_normalized_name/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_normalized_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_registry/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_registry/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_rev/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_rev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_tag/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/git_tag/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/infer_prerelease/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/infer_prerelease/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_arg/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_arg/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_git_name/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_git_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_inherit_dependency/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_inherit_dependency/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_inherit_dependency/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/in/dependency-alt/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_manifest/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_manifest/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_name_external/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_name_external/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path_name/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path_name/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path_self/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_path_self/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_target_empty/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_target_empty/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_vers/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/invalid_vers/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path/in/optional/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path_no_default/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path_no_default/in/optional/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path_no_default/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/list_features_path_no_default/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/locked_changed/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/locked_changed/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/locked_unchanged/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/locked_unchanged/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/lockfile_updated/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/lockfile_updated/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/manifest_path_package/in/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/manifest_path_package/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/manifest_path_package/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/manifest_path_package/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/manifest_path_package/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/merge_activated_features/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/merge_activated_features/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/merge_activated_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_add/mod.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/multiple_conflicts_with_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/multiple_conflicts_with_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/multiple_conflicts_with_rename/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/multiple_conflicts_with_rename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/namever/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/namever/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_args/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_args/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_default_features/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_optional/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/no_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/offline_empty_cache/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/offline_empty_cache/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/optional/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_default_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_default_features_with_no_default_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_default_features_with_no_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_git_with_path/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_git_with_path/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_git_with_path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_features_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_features_noop/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_features_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_noop/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_optional_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_optional_noop/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inherit_optional_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inline_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_inline_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_dev_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_dev_noop/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_dev_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_noop/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_name_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_default_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_default_features_with_default_features/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_default_features_with_default_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_optional/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_optional_with_optional/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_no_optional_with_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_optional/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_optional_with_no_optional/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_optional_with_no_optional/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_noop/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_noop/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_with_version/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_with_version/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_path_with_version/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_preserves_inline_table/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_preserves_inline_table/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_no_rename/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_no_rename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_rename/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_rename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_rename_noop/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_rename_with_rename_noop/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_version_with_git/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_version_with_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_version_with_path/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_version_with_path/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_version_with_path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_with_rename/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_with_rename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep_features/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep_features/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/overwrite_workspace_dep_features/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_dev/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_dev/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/in/optional/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_normalized_name/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_normalized_name/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/path_normalized_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_features_table/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_features_table/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_sorted/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_sorted/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_unsorted/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/preserve_unsorted/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/quiet/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/quiet/stderr.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/quiet/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/registry/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/registry/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rename/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/require_weak/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/require_weak/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_ignore/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_ignore/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_ignore/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_incompatible/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_incompatible/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_incompatible/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_latest/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_latest/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_latest/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_older/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_older/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/rust_version_older/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/sorted_table_with_dotted_item/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/sorted_table_with_dotted_item/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/target/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/target/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/target_cfg/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/target_cfg/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/unknown_inherited_feature/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/unknown_inherited_feature/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/unknown_inherited_feature/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/vers/in: -------------------------------------------------------------------------------- 1 | ../add-basic.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/vers/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_name/in/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_name/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_name/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_name/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path/in/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path_dev/in/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path_dev/in/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path_dev/in/primary/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path_dev/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["primary", "dependency"] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_add/workspace_path_dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_command.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_config.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_features.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_lints/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table.in/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table/in: -------------------------------------------------------------------------------- 1 | ../inherit_workspace_package_table.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_with_edition/in: -------------------------------------------------------------------------------- 1 | ../inherit_workspace_package_table.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_with_edition/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_with_registry/in: -------------------------------------------------------------------------------- 1 | ../inherit_workspace_package_table.in -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_with_registry/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_without_version/in/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/inherit_workspace_package_table_without_version/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_new/mod.rs -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_memebers/in/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_memebers/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/avoid_empty_tables/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/avoid_empty_tables/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/build/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/build/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/dev/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/dry_run/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/dry_run/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/dry_run/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_patch/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_patch/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_profile/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_profile/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_replace/in/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_replace/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ "my-package" ] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_replace/out/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/gc_replace/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_arg/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_arg/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_dep/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_dep/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package/in: -------------------------------------------------------------------------------- 1 | ../remove-package.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package/out/dep-a/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package/out/dep-b/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package_multiple/in: -------------------------------------------------------------------------------- 1 | ../remove-package.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package_multiple/out/dep-a/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package_multiple/out/dep-b/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_package_multiple/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_section/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_section/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_section_dep/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_section_dep/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_target/in: -------------------------------------------------------------------------------- 1 | ../remove-target.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_target/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_target_dep/in: -------------------------------------------------------------------------------- 1 | ../remove-target.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/invalid_target_dep/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/multiple_deps/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/multiple_deps/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/multiple_dev/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/multiple_dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/no_arg/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/no_arg/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/offline/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/offline/stderr.log: -------------------------------------------------------------------------------- 1 | Removing docopt from dependencies 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/offline/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/optional_dep_feature/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/optional_dep_feature/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/optional_feature/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/optional_feature/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/package/in: -------------------------------------------------------------------------------- 1 | ../remove-package.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/package/out/dep-a/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/package/out/dep-b/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/package/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/remove-basic.in/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/remove-package.in/dep-a/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/remove-package.in/dep-b/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/remove_basic/in: -------------------------------------------------------------------------------- 1 | ../remove-basic.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/remove_basic/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target/in: -------------------------------------------------------------------------------- 1 | ../remove-target.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target_build/in: -------------------------------------------------------------------------------- 1 | ../remove-target.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target_build/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target_dev/in: -------------------------------------------------------------------------------- 1 | ../remove-target.in/ -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/target_dev/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/update_lock_file/in/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/update_lock_file/out/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/update_lock_file/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace/in/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace/out/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ "my-package" ] 3 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace/out/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_non_virtual/in/my-member/src/main.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member/src/main.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_non_virtual/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_preserved/in/my-other-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_preserved/in/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_preserved/out/my-package/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_remove/workspace_preserved/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/cargo_targets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cargo_targets.rs -------------------------------------------------------------------------------- /tests/testsuite/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cfg.rs -------------------------------------------------------------------------------- /tests/testsuite/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/check.rs -------------------------------------------------------------------------------- /tests/testsuite/check_cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/check_cfg.rs -------------------------------------------------------------------------------- /tests/testsuite/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/clean.rs -------------------------------------------------------------------------------- /tests/testsuite/collisions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/collisions.rs -------------------------------------------------------------------------------- /tests/testsuite/concurrent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/concurrent.rs -------------------------------------------------------------------------------- /tests/testsuite/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/config.rs -------------------------------------------------------------------------------- /tests/testsuite/config_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/config_cli.rs -------------------------------------------------------------------------------- /tests/testsuite/config_include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/config_include.rs -------------------------------------------------------------------------------- /tests/testsuite/corrupt_git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/corrupt_git.rs -------------------------------------------------------------------------------- /tests/testsuite/cross_compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cross_compile.rs -------------------------------------------------------------------------------- /tests/testsuite/cross_publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/cross_publish.rs -------------------------------------------------------------------------------- /tests/testsuite/custom_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/custom_target.rs -------------------------------------------------------------------------------- /tests/testsuite/death.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/death.rs -------------------------------------------------------------------------------- /tests/testsuite/dep_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/dep_info.rs -------------------------------------------------------------------------------- /tests/testsuite/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/directory.rs -------------------------------------------------------------------------------- /tests/testsuite/doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/doc.rs -------------------------------------------------------------------------------- /tests/testsuite/docscrape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/docscrape.rs -------------------------------------------------------------------------------- /tests/testsuite/edition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/edition.rs -------------------------------------------------------------------------------- /tests/testsuite/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/error.rs -------------------------------------------------------------------------------- /tests/testsuite/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/features.rs -------------------------------------------------------------------------------- /tests/testsuite/features2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/features2.rs -------------------------------------------------------------------------------- /tests/testsuite/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/fetch.rs -------------------------------------------------------------------------------- /tests/testsuite/fix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/fix.rs -------------------------------------------------------------------------------- /tests/testsuite/freshness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/freshness.rs -------------------------------------------------------------------------------- /tests/testsuite/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/git.rs -------------------------------------------------------------------------------- /tests/testsuite/git_auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/git_auth.rs -------------------------------------------------------------------------------- /tests/testsuite/git_gc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/git_gc.rs -------------------------------------------------------------------------------- /tests/testsuite/git_shallow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/git_shallow.rs -------------------------------------------------------------------------------- /tests/testsuite/glob_targets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/glob_targets.rs -------------------------------------------------------------------------------- /tests/testsuite/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/help.rs -------------------------------------------------------------------------------- /tests/testsuite/https.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/https.rs -------------------------------------------------------------------------------- /tests/testsuite/init/auto_git/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/auto_git/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/auto_git/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/auto_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_explicit/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_explicit/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_explicit_nosrc/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_explicit_nosrc/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_namenosrc/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_namenosrc/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_namesrc/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_namesrc/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_nosrc/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/bin_already_exists_implicit_nosrc/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/both_lib_and_bin/stderr.log: -------------------------------------------------------------------------------- 1 | error: can't specify both lib and binary outputs 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/both_lib_and_bin/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/cant_create_library_when_both_binlib_present/in/case.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/cant_create_library_when_both_binlib_present/in/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/cant_create_library_when_both_binlib_present/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/confused_by_multiple_lib_files/in/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() { println!("lib.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/confused_by_multiple_lib_files/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() { println!("src/lib.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/confused_by_multiple_lib_files/out/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() { println!("lib.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/confused_by_multiple_lib_files/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() { println!("src/lib.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/confused_by_multiple_lib_files/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/in/case.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/in/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/out/case.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/out/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_both_binlib_present/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_instructed_and_has_lib_file/in/case.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_instructed_and_has_lib_file/out/case.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_binary_when_instructed_and_has_lib_file/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_library_when_instructed_and_has_bin_file/in/case.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_library_when_instructed_and_has_bin_file/out/case.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/creates_library_when_instructed_and_has_bin_file/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/empty_dir/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/explicit_bin_with_git/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/explicit_bin_with_git/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/explicit_bin_with_git/out/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/testsuite/init/explicit_bin_with_git/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/explicit_bin_with_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/formats_source/in/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/formats_source/out/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/formats_source/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/formats_source/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/fossil_autodetect/in/.fossil/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/fossil_autodetect/out/.fossil-settings/clean-glob: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/fossil_autodetect/out/.fossil-settings/ignore-glob: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/fossil_autodetect/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/fossil_autodetect/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/git_autodetect/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/git_autodetect/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/git_autodetect/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/git_ignore_exists_no_conflicting_entries/in/.gitignore: -------------------------------------------------------------------------------- 1 | **/some.file -------------------------------------------------------------------------------- /tests/testsuite/init/git_ignore_exists_no_conflicting_entries/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/git_ignore_exists_no_conflicting_entries/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/ignores_failure_to_format_source/in/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/ignores_failure_to_format_source/out/rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/ignores_failure_to_format_source/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/ignores_failure_to_format_source/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_bin_with_git/in/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_bin_with_git/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_bin_with_git/out/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_bin_with_git/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_bin_with_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_lib_with_git/in/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_lib_with_git/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_lib_with_git/out/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_lib_with_git/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inferred_lib_with_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/inherit_workspace_package_table/in/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/inherit_workspace_package_table/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/inherit_workspace_package_table/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/invalid_dir_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_nosrc/in/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_nosrc/out/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_nosrc/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_nosrc/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_src/in/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_src/out/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn f() {} 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_src/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/lib_already_exists_src/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/mercurial_autodetect/in/.hg/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/mercurial_autodetect/out/.hgignore: -------------------------------------------------------------------------------- 1 | ^target$ 2 | ^Cargo.lock$ 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/mercurial_autodetect/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/mercurial_autodetect/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/init/mod.rs -------------------------------------------------------------------------------- /tests/testsuite/init/multibin_project_name_clash/in/case.rs: -------------------------------------------------------------------------------- 1 | fn main() { println!("foo.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/multibin_project_name_clash/in/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { println!("main.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/multibin_project_name_clash/out/case.rs: -------------------------------------------------------------------------------- 1 | fn main() { println!("foo.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/multibin_project_name_clash/out/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { println!("main.rs"); } 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/multibin_project_name_clash/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/no_filename/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/path_contains_separator/in/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/path_contains_separator/out/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/testsuite/init/path_contains_separator/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/pijul_autodetect/in/.pijul/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/pijul_autodetect/out/.ignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/pijul_autodetect/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/pijul_autodetect/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/reserved_name/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_bin/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/simple_bin/out/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_bin/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_bin/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git/out/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git_ignore_exists/in/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/some.file -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git_ignore_exists/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_git_ignore_exists/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg/out/.hgignore: -------------------------------------------------------------------------------- 1 | ^target$ 2 | ^Cargo.lock$ 3 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg_ignore_exists/in/.hg/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg_ignore_exists/in/.hgignore: -------------------------------------------------------------------------------- 1 | ^/somefile -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg_ignore_exists/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_hg_ignore_exists/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_lib/in: -------------------------------------------------------------------------------- 1 | ../empty_dir -------------------------------------------------------------------------------- /tests/testsuite/init/simple_lib/stderr.log: -------------------------------------------------------------------------------- 1 | Created library package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/simple_lib/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/unknown_flags/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/with_argument/in/foo/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/init/with_argument/out/foo/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/testsuite/init/with_argument/stderr.log: -------------------------------------------------------------------------------- 1 | Created binary (application) package 2 | -------------------------------------------------------------------------------- /tests/testsuite/init/with_argument/stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testsuite/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/install.rs -------------------------------------------------------------------------------- /tests/testsuite/jobserver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/jobserver.rs -------------------------------------------------------------------------------- /tests/testsuite/lints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/lints.rs -------------------------------------------------------------------------------- /tests/testsuite/local_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/local_registry.rs -------------------------------------------------------------------------------- /tests/testsuite/locate_project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/locate_project.rs -------------------------------------------------------------------------------- /tests/testsuite/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/login.rs -------------------------------------------------------------------------------- /tests/testsuite/logout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/logout.rs -------------------------------------------------------------------------------- /tests/testsuite/lto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/lto.rs -------------------------------------------------------------------------------- /tests/testsuite/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/main.rs -------------------------------------------------------------------------------- /tests/testsuite/member_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/member_errors.rs -------------------------------------------------------------------------------- /tests/testsuite/message_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/message_format.rs -------------------------------------------------------------------------------- /tests/testsuite/messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/messages.rs -------------------------------------------------------------------------------- /tests/testsuite/metabuild.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/metabuild.rs -------------------------------------------------------------------------------- /tests/testsuite/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/metadata.rs -------------------------------------------------------------------------------- /tests/testsuite/mock-std/library/compiler_builtins/src/lib.rs: -------------------------------------------------------------------------------- 1 | // intentionally blank 2 | -------------------------------------------------------------------------------- /tests/testsuite/mock-std/library/rustc-std-workspace-alloc/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub use alloc::*; 4 | -------------------------------------------------------------------------------- /tests/testsuite/mock-std/library/rustc-std-workspace-core/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | pub use core::*; 4 | -------------------------------------------------------------------------------- /tests/testsuite/mock-std/library/rustc-std-workspace-std/lib.rs: -------------------------------------------------------------------------------- 1 | pub use std::*; 2 | -------------------------------------------------------------------------------- /tests/testsuite/mock-std/library/sysroot/src/lib.rs: -------------------------------------------------------------------------------- 1 | // Intentionally left blank. 2 | -------------------------------------------------------------------------------- /tests/testsuite/multitarget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/multitarget.rs -------------------------------------------------------------------------------- /tests/testsuite/net_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/net_config.rs -------------------------------------------------------------------------------- /tests/testsuite/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/new.rs -------------------------------------------------------------------------------- /tests/testsuite/offline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/offline.rs -------------------------------------------------------------------------------- /tests/testsuite/old_cargos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/old_cargos.rs -------------------------------------------------------------------------------- /tests/testsuite/out_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/out_dir.rs -------------------------------------------------------------------------------- /tests/testsuite/owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/owner.rs -------------------------------------------------------------------------------- /tests/testsuite/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/package.rs -------------------------------------------------------------------------------- /tests/testsuite/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/patch.rs -------------------------------------------------------------------------------- /tests/testsuite/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/path.rs -------------------------------------------------------------------------------- /tests/testsuite/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/paths.rs -------------------------------------------------------------------------------- /tests/testsuite/pkgid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/pkgid.rs -------------------------------------------------------------------------------- /tests/testsuite/plugins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/plugins.rs -------------------------------------------------------------------------------- /tests/testsuite/proc_macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/proc_macro.rs -------------------------------------------------------------------------------- /tests/testsuite/profile_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/profile_config.rs -------------------------------------------------------------------------------- /tests/testsuite/profile_custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/profile_custom.rs -------------------------------------------------------------------------------- /tests/testsuite/profiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/profiles.rs -------------------------------------------------------------------------------- /tests/testsuite/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/progress.rs -------------------------------------------------------------------------------- /tests/testsuite/pub_priv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/pub_priv.rs -------------------------------------------------------------------------------- /tests/testsuite/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/publish.rs -------------------------------------------------------------------------------- /tests/testsuite/read_manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/read_manifest.rs -------------------------------------------------------------------------------- /tests/testsuite/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/registry.rs -------------------------------------------------------------------------------- /tests/testsuite/registry_auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/registry_auth.rs -------------------------------------------------------------------------------- /tests/testsuite/rename_deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rename_deps.rs -------------------------------------------------------------------------------- /tests/testsuite/replace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/replace.rs -------------------------------------------------------------------------------- /tests/testsuite/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/run.rs -------------------------------------------------------------------------------- /tests/testsuite/rust_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rust_version.rs -------------------------------------------------------------------------------- /tests/testsuite/rustc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rustc.rs -------------------------------------------------------------------------------- /tests/testsuite/rustdoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rustdoc.rs -------------------------------------------------------------------------------- /tests/testsuite/rustdocflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rustdocflags.rs -------------------------------------------------------------------------------- /tests/testsuite/rustflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rustflags.rs -------------------------------------------------------------------------------- /tests/testsuite/rustup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/rustup.rs -------------------------------------------------------------------------------- /tests/testsuite/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/script.rs -------------------------------------------------------------------------------- /tests/testsuite/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/search.rs -------------------------------------------------------------------------------- /tests/testsuite/shell_quoting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/shell_quoting.rs -------------------------------------------------------------------------------- /tests/testsuite/ssh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/ssh.rs -------------------------------------------------------------------------------- /tests/testsuite/standard_lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/standard_lib.rs -------------------------------------------------------------------------------- /tests/testsuite/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/test.rs -------------------------------------------------------------------------------- /tests/testsuite/timings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/timings.rs -------------------------------------------------------------------------------- /tests/testsuite/tool_paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/tool_paths.rs -------------------------------------------------------------------------------- /tests/testsuite/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/tree.rs -------------------------------------------------------------------------------- /tests/testsuite/unit_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/unit_graph.rs -------------------------------------------------------------------------------- /tests/testsuite/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/update.rs -------------------------------------------------------------------------------- /tests/testsuite/vendor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/vendor.rs -------------------------------------------------------------------------------- /tests/testsuite/verify_project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/verify_project.rs -------------------------------------------------------------------------------- /tests/testsuite/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/version.rs -------------------------------------------------------------------------------- /tests/testsuite/workspaces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/workspaces.rs -------------------------------------------------------------------------------- /tests/testsuite/yank.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/tests/testsuite/yank.rs -------------------------------------------------------------------------------- /triagebot.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crablang/crabgo/HEAD/triagebot.toml --------------------------------------------------------------------------------