Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
binarycat committed Jul 31, 2024
1 parent c8263c2 commit 7fb88ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/bootstrap/src/core/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,7 @@ impl Config {
"3",
"-SRf",
]);
wget.args([
"-O",
tempfile.to_str().unwrap(),
]);
wget.args(["-O", tempfile.to_str().unwrap()]);
// Don't print progress in CI; the \r wrapping looks bad and downloads don't take long enough for progress to be useful.
if CiEnv::is_ci() {
curl.arg("-s");
Expand Down
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 71 files
+1 −123 CHANGELOG.md
+188 −196 Cargo.lock
+30 −31 Cargo.toml
+2 −2 crates/cargo-test-macro/Cargo.toml
+0 −43 crates/cargo-test-macro/src/lib.rs
+5 −2 crates/cargo-test-support/Cargo.toml
+2 −32 crates/cargo-test-support/src/compare.rs
+49 −54 crates/cargo-test-support/src/git.rs
+0 −3 crates/cargo-test-support/src/install.rs
+62 −182 crates/cargo-test-support/src/lib.rs
+6 −35 crates/cargo-test-support/src/paths.rs
+3 −62 crates/cargo-test-support/src/publish.rs
+59 −102 crates/cargo-test-support/src/registry.rs
+1 −1 crates/cargo-util-schemas/Cargo.toml
+2 −2 crates/cargo-util/Cargo.toml
+2 −2 crates/crates-io/Cargo.toml
+2 −2 crates/rustfix/Cargo.toml
+2 −2 credential/cargo-credential-libsecret/Cargo.toml
+2 −2 credential/cargo-credential-macos-keychain/Cargo.toml
+2 −2 credential/cargo-credential-wincred/Cargo.toml
+0 −20 src/bin/cargo/commands/package.rs
+16 −3 src/cargo/core/compiler/build_context/target_info.rs
+1 −1 src/cargo/core/compiler/build_runner/mod.rs
+24 −1 src/cargo/core/compiler/custom_build.rs
+69 −62 src/cargo/core/compiler/mod.rs
+5 −4 src/cargo/core/compiler/unit.rs
+0 −2 src/cargo/core/features.rs
+16 −15 src/cargo/core/source_id.rs
+28 −305 src/cargo/ops/cargo_package.rs
+1 −5 src/cargo/ops/cargo_update.rs
+3 −5 src/cargo/ops/registry/mod.rs
+34 −42 src/cargo/ops/registry/publish.rs
+27 −27 src/cargo/sources/registry/index/mod.rs
+1 −1 src/cargo/sources/registry/mod.rs
+25 −2 src/cargo/util/toml/mod.rs
+3 −46 src/cargo/util/toml_mut/upgrade.rs
+56 −13 src/doc/contrib/src/tests/writing.md
+3 −12 src/doc/man/cargo-package.md
+0 −10 src/doc/man/generated_txt/cargo-package.txt
+3 −14 src/doc/src/commands/cargo-package.md
+1 −2 src/etc/_cargo
+1 −1 src/etc/cargo.bashcomp.sh
+3 −16 src/etc/man/cargo-package.1
+3 −3 tests/testsuite/alt_registry.rs
+12 −28 tests/testsuite/bad_manifest_path.rs
+4 −32 tests/testsuite/bench.rs
+5 −23 tests/testsuite/binary_name.rs
+1 −0 tests/testsuite/build.rs
+3 −3 tests/testsuite/build_plan.rs
+16 −18 tests/testsuite/cargo/z_help/stdout.term.svg
+2 −2 tests/testsuite/cargo_config/mod.rs
+35 −39 tests/testsuite/cargo_package/help/stdout.term.svg
+21 −11 tests/testsuite/features.rs
+1 −1 tests/testsuite/features_namespaced.rs
+2 −2 tests/testsuite/git.rs
+55 −59 tests/testsuite/install.rs
+1 −1 tests/testsuite/lints/implicit_features.rs
+6 −6 tests/testsuite/locate_project.rs
+18 −35 tests/testsuite/messages.rs
+1 −1 tests/testsuite/metabuild.rs
+25 −25 tests/testsuite/metadata.rs
+5 −5 tests/testsuite/open_namespaces.rs
+4 −871 tests/testsuite/package.rs
+60 −41 tests/testsuite/pkgid.rs
+1 −1 tests/testsuite/profile_trim_paths.rs
+4 −4 tests/testsuite/publish_lockfile.rs
+9 −9 tests/testsuite/read_manifest.rs
+3 −3 tests/testsuite/script.rs
+82 −106 tests/testsuite/test.rs
+1 −1 tests/testsuite/unit_graph.rs
+2 −96 tests/testsuite/update.rs

0 comments on commit 7fb88ca

Please sign in to comment.