We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd4c8c0 commit 622d4c2Copy full SHA for 622d4c2
tests/testsuite/vendor.rs
@@ -1085,10 +1085,14 @@ fn ignore_files() {
1085
.build();
1086
1087
Package::new("url", "1.4.1")
1088
+ // These will be vendored
1089
+ .file(".cargo_vcs_info.json", "")
1090
.file("src/lib.rs", "")
- .file("foo.orig", "")
- .file(".gitignore", "")
1091
+ // These will not be vendored
1092
+ .file(".cargo-ok", "")
1093
.file(".gitattributes", "")
1094
+ .file(".gitignore", "")
1095
+ .file("foo.orig", "")
1096
.file("foo.rej", "")
1097
.publish();
1098
@@ -1099,6 +1103,7 @@ fn ignore_files() {
1099
1103
str![[r#"
1100
1104
{
1101
1105
"files": {
1106
+ ".cargo_vcs_info.json": "[..]",
1102
1107
"Cargo.toml": "[..]",
1108
"src/lib.rs": "[..]"
1109
},
0 commit comments