Skip to content

Commit e7bfed1

Browse files
committed
Skip serializing the dirty flag if false.
1 parent a00232d commit e7bfed1

File tree

6 files changed

+14
-16
lines changed

6 files changed

+14
-16
lines changed

src/cargo/ops/cargo_package.rs

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ struct VcsInfo {
8282
struct GitVcsInfo {
8383
sha1: String,
8484
/// Indicate whether or not the Git worktree is dirty.
85+
#[serde(skip_serializing_if = "std::ops::Not::not")]
8586
dirty: bool,
8687
}
8788

src/doc/man/cargo-package.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ steps:
3131
executable binary or example target. {{man "cargo-install" 1}} will use the
3232
packaged lock file if the `--locked` flag is used.
3333
- 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
3535
worktree is dirty.
3636
3. Extract the `.crate` file and build it to verify it can build.
3737
- 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
5959
}
6060
```
6161

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
6363
was built.
6464

6565
`path_in_vcs` will be set to a repo-relative path for packages

src/doc/man/generated_txt/cargo-package.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ DESCRIPTION
2929
packaged lock file if the --locked flag is used.
3030

3131
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.
3434

3535
3. Extract the .crate file and build it to verify it can build.
3636
o This will rebuild your package from scratch to ensure that it can
@@ -57,8 +57,8 @@ DESCRIPTION
5757
"path_in_vcs": ""
5858
}
5959

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.
6262

6363
path_in_vcs will be set to a repo-relative path for packages in
6464
subdirectories of the version control repository.

src/doc/src/commands/cargo-package.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ steps:
2626
executable binary or example target. [cargo-install(1)](cargo-install.html) will use the
2727
packaged lock file if the `--locked` flag is used.
2828
- 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
3030
worktree is dirty.
3131
3. Extract the `.crate` file and build it to verify it can build.
3232
- 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
5454
}
5555
```
5656

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
5858
was built.
5959

6060
`path_in_vcs` will be set to a repo-relative path for packages

src/etc/man/cargo-package.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ packaged lock file if the \fB\-\-locked\fR flag is used.
4343
.sp
4444
.RS 4
4545
\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
4747
worktree is dirty.
4848
.RE
4949
.RE
@@ -82,7 +82,7 @@ Will generate a \fB\&.cargo_vcs_info.json\fR in the following format
8282
.fi
8383
.RE
8484
.sp
85-
\fBdirty\fR indicates whether or not the Git worktree was dirty when the package
85+
\fBdirty\fR indicates that the Git worktree was dirty when the package
8686
was built.
8787
.sp
8888
\fBpath_in_vcs\fR will be set to a repo\-relative path for packages

tests/testsuite/package.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for
189189
let vcs_contents = format!(
190190
r#"{{
191191
"git": {{
192-
"sha1": "{}",
193-
"dirty": false
192+
"sha1": "{}"
194193
}},
195194
"path_in_vcs": ""
196195
}}
@@ -231,8 +230,7 @@ See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for
231230
let vcs_contents = format!(
232231
r#"{{
233232
"git": {{
234-
"sha1": "{}",
235-
"dirty": false
233+
"sha1": "{}"
236234
}},
237235
"path_in_vcs": "a/a"
238236
}}
@@ -1272,8 +1270,7 @@ fn issue_13695_allowing_dirty_vcs_info_but_clean() {
12721270
".cargo_vcs_info.json",
12731271
r#"{
12741272
"git": {
1275-
"sha1": "[..]",
1276-
"dirty": false
1273+
"sha1": "[..]"
12771274
},
12781275
"path_in_vcs": ""
12791276
}"#,

0 commit comments

Comments
 (0)