Skip to content

Commit

Permalink
Auto merge of #57559 - ehuss:update-cargo, r=alexcrichton
Browse files Browse the repository at this point in the history
Update cargo

13 commits in 34320d212dca8cd27d06ce93c16c6151f46fcf2e..2b4a5f1f0bb6e13759e88ea9512527b0beba154f
2019-01-03 19:12:38 +0000 to 2019-01-12 04:13:12 +0000
- Add test for publish with [patch] + cleanup. (rust-lang/cargo#6544)
- Fix clippy warning (rust-lang/cargo#6546)
- Revert "Workaround by using yesterday's nightly" (rust-lang/cargo#6540)
- Adding feature-flags to `cargo publish` and `cargo package` (rust-lang/cargo#6453)
- Fix the Travis CI badge (rust-lang/cargo#6530)
- Add helpful text for Windows exceptions like Unix (rust-lang/cargo#6532)
- Report fix bugs to Rust instead of Cargo (rust-lang/cargo#6531)
- --{example,bin,bench,test} with no argument now lists all available targets (rust-lang/cargo#6505)
- Rebuild on mid build file modification (rust-lang/cargo#6484)
- Derive Clone for TomlDependency (rust-lang/cargo#6527)
- publish: rework the crates.io detection logic. (rust-lang/cargo#6525)
- avoid duplicates in ignore files (rust-lang/cargo#6521)
- Rustflags in metadata (rust-lang/cargo#6503)

r? @alexcrichton
  • Loading branch information
bors committed Jan 14, 2019
2 parents d106808 + 0a3f178 commit 03acbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 47 files
+8 −8 .travis.yml
+1 −1 README.md
+2 −1 src/bin/cargo/commands/bench.rs
+2 −1 src/bin/cargo/commands/build.rs
+2 −1 src/bin/cargo/commands/check.rs
+1 −1 src/bin/cargo/commands/doc.rs
+2 −1 src/bin/cargo/commands/fix.rs
+3 −1 src/bin/cargo/commands/install.rs
+4 −0 src/bin/cargo/commands/package.rs
+4 −0 src/bin/cargo/commands/publish.rs
+2 −1 src/bin/cargo/commands/run.rs
+1 −1 src/bin/cargo/commands/rustc.rs
+1 −1 src/bin/cargo/commands/rustdoc.rs
+1 −1 src/bin/cargo/commands/test.rs
+37 −0 src/cargo/core/compiler/context/compilation_files.rs
+2 −0 src/cargo/core/compiler/custom_build.rs
+9 −7 src/cargo/core/compiler/fingerprint.rs
+2 −0 src/cargo/core/compiler/mod.rs
+1 −1 src/cargo/core/manifest.rs
+0 −7 src/cargo/core/source/source_id.rs
+125 −45 src/cargo/ops/cargo_new.rs
+6 −3 src/cargo/ops/cargo_package.rs
+25 −8 src/cargo/ops/registry.rs
+60 −9 src/cargo/util/command_prelude.rs
+4 −2 src/cargo/util/diagnostic_server.rs
+41 −1 src/cargo/util/errors.rs
+5 −0 src/cargo/util/mod.rs
+12 −0 src/cargo/util/paths.rs
+1 −1 src/cargo/util/toml/mod.rs
+75 −0 src/cargo/util/workspace.rs
+33 −1 tests/testsuite/alt_registry.rs
+3 −3 tests/testsuite/cargo_features.rs
+4 −4 tests/testsuite/cross_publish.rs
+3 −1 tests/testsuite/fix.rs
+136 −1 tests/testsuite/freshness.rs
+39 −0 tests/testsuite/init.rs
+189 −0 tests/testsuite/list_targets.rs
+5 −5 tests/testsuite/login.rs
+1 −0 tests/testsuite/main.rs
+12 −0 tests/testsuite/new.rs
+92 −1 tests/testsuite/package.rs
+2 −0 tests/testsuite/path.rs
+209 −52 tests/testsuite/publish.rs
+9 −16 tests/testsuite/registry.rs
+1 −1 tests/testsuite/search.rs
+4 −61 tests/testsuite/support/publish.rs
+41 −17 tests/testsuite/support/registry.rs

0 comments on commit 03acbd7

Please sign in to comment.