Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jan 12, 2019
1 parent d6525ef commit 0a3f178
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 0a3f178

Please sign in to comment.