Commit 843e79f
committed
Delete dead fields of deserialized cargo output
The dead_code lint was previously eroneously missing this dead code.
Since this lint bug has been fixed, the unused field need to be removed
or marked as `#[allow(dead_code)]`.
Given that this struct is deserialized without #[serde(deny_unknown_fields)]
it is ok to simply delete the never read fields.1 parent f60c4ed commit 843e79f
1 file changed
+2
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2135 | 2135 | | |
2136 | 2136 | | |
2137 | 2137 | | |
2138 | | - | |
2139 | 2138 | | |
2140 | 2139 | | |
2141 | 2140 | | |
2142 | 2141 | | |
2143 | | - | |
2144 | | - | |
2145 | | - | |
2146 | | - | |
2147 | | - | |
2148 | | - | |
| 2142 | + | |
| 2143 | + | |
2149 | 2144 | | |
2150 | 2145 | | |
2151 | 2146 | | |
| |||
0 commit comments