Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information