File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -647,9 +647,6 @@ fn vendor_this(relative: &Path) -> bool {
647
647
// Temporary Cargo files
648
648
Some ( ".cargo-ok" ) => false ,
649
649
650
- // Explicitly exclude .cargo_vcs_info.json to keep the old behavior.
651
- Some ( ".cargo_vcs_info.json" ) => false ,
652
-
653
650
// Skip patch-style orig/rej files. Published crates on crates.io
654
651
// have `Cargo.toml.orig` which we don't want to use here and
655
652
// otherwise these are rarely used as part of the build process.
Original file line number Diff line number Diff line change @@ -1096,7 +1096,7 @@ fn ignore_files() {
1096
1096
p. cargo ( "vendor --respect-source-config" ) . run ( ) ;
1097
1097
let csum = p. read_file ( "vendor/url/.cargo-checksum.json" ) ;
1098
1098
assert ! ( !csum. contains( "foo.orig" ) ) ;
1099
- assert ! ( ! csum. contains( ".cargo_vcs_info.json" ) ) ;
1099
+ assert ! ( csum. contains( ".cargo_vcs_info.json" ) ) ;
1100
1100
assert ! ( !csum. contains( ".gitignore" ) ) ;
1101
1101
assert ! ( !csum. contains( ".gitattributes" ) ) ;
1102
1102
assert ! ( !csum. contains( ".cargo-ok" ) ) ;
You can’t perform that action at this time.
0 commit comments