File tree 6 files changed +14
-16
lines changed
6 files changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ struct VcsInfo {
82
82
struct GitVcsInfo {
83
83
sha1 : String ,
84
84
/// Indicate whether or not the Git worktree is dirty.
85
+ #[ serde( skip_serializing_if = "std::ops::Not::not" ) ]
85
86
dirty : bool ,
86
87
}
87
88
Original file line number Diff line number Diff line change 31
31
executable binary or example target. {{man "cargo-install" 1}} will use the
32
32
packaged lock file if the ` --locked ` flag is used.
33
33
- A ` .cargo_vcs_info.json ` file is included that contains information
34
- about the current VCS checkout hash if available, and whether or not the
34
+ about the current VCS checkout hash if available, as well as a flag if the
35
35
worktree is dirty.
36
36
3 . Extract the ` .crate ` file and build it to verify it can build.
37
37
- This will rebuild your package from scratch to ensure that it can be
@@ -59,7 +59,7 @@ Will generate a `.cargo_vcs_info.json` in the following format
59
59
}
60
60
```
61
61
62
- ` dirty ` indicates whether or not the Git worktree was dirty when the package
62
+ ` dirty ` indicates that the Git worktree was dirty when the package
63
63
was built.
64
64
65
65
` path_in_vcs ` will be set to a repo-relative path for packages
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ DESCRIPTION
29
29
packaged lock file if the --locked flag is used.
30
30
31
31
o A .cargo_vcs_info.json file is included that contains information
32
- about the current VCS checkout hash if available, and whether or
33
- not the worktree is dirty.
32
+ about the current VCS checkout hash if available, as well as a
33
+ flag if the worktree is dirty.
34
34
35
35
3. Extract the .crate file and build it to verify it can build.
36
36
o This will rebuild your package from scratch to ensure that it can
@@ -57,8 +57,8 @@ DESCRIPTION
57
57
"path_in_vcs": ""
58
58
}
59
59
60
- dirty indicates whether or not the Git worktree was dirty when the
61
- package was built.
60
+ dirty indicates that the Git worktree was dirty when the package was
61
+ built.
62
62
63
63
path_in_vcs will be set to a repo-relative path for packages in
64
64
subdirectories of the version control repository.
Original file line number Diff line number Diff line change 26
26
executable binary or example target. [ cargo-install(1)] ( cargo-install.html ) will use the
27
27
packaged lock file if the ` --locked ` flag is used.
28
28
- A ` .cargo_vcs_info.json ` file is included that contains information
29
- about the current VCS checkout hash if available, and whether or not the
29
+ about the current VCS checkout hash if available, as well as a flag if the
30
30
worktree is dirty.
31
31
3 . Extract the ` .crate ` file and build it to verify it can build.
32
32
- This will rebuild your package from scratch to ensure that it can be
@@ -54,7 +54,7 @@ Will generate a `.cargo_vcs_info.json` in the following format
54
54
}
55
55
```
56
56
57
- ` dirty ` indicates whether or not the Git worktree was dirty when the package
57
+ ` dirty ` indicates that the Git worktree was dirty when the package
58
58
was built.
59
59
60
60
` path_in_vcs ` will be set to a repo-relative path for packages
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ packaged lock file if the \fB\-\-locked\fR flag is used.
43
43
.sp
44
44
.RS 4
45
45
\h '-04' \(bu \h '+02' A \fB \& .cargo_vcs_info.json \fR file is included that contains information
46
- about the current VCS checkout hash if available, and whether or not the
46
+ about the current VCS checkout hash if available, as well as a flag if the
47
47
worktree is dirty.
48
48
.RE
49
49
.RE
@@ -82,7 +82,7 @@ Will generate a \fB\&.cargo_vcs_info.json\fR in the following format
82
82
.fi
83
83
.RE
84
84
.sp
85
- \fB dirty \fR indicates whether or not the Git worktree was dirty when the package
85
+ \fB dirty \fR indicates that the Git worktree was dirty when the package
86
86
was built.
87
87
.sp
88
88
\fB path_in_vcs \fR will be set to a repo\- relative path for packages
Original file line number Diff line number Diff line change @@ -189,8 +189,7 @@ See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for
189
189
let vcs_contents = format ! (
190
190
r#"{{
191
191
"git": {{
192
- "sha1": "{}",
193
- "dirty": false
192
+ "sha1": "{}"
194
193
}},
195
194
"path_in_vcs": ""
196
195
}}
@@ -231,8 +230,7 @@ See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for
231
230
let vcs_contents = format ! (
232
231
r#"{{
233
232
"git": {{
234
- "sha1": "{}",
235
- "dirty": false
233
+ "sha1": "{}"
236
234
}},
237
235
"path_in_vcs": "a/a"
238
236
}}
@@ -1272,8 +1270,7 @@ fn issue_13695_allowing_dirty_vcs_info_but_clean() {
1272
1270
".cargo_vcs_info.json" ,
1273
1271
r#"{
1274
1272
"git": {
1275
- "sha1": "[..]",
1276
- "dirty": false
1273
+ "sha1": "[..]"
1277
1274
},
1278
1275
"path_in_vcs": ""
1279
1276
}"# ,
You can’t perform that action at this time.
0 commit comments