]> git.proxmox.com Git - cargo.git/commit
Auto merge of #9789 - ehuss:fix-value-after-table-profile, r=alexcrichton
authorbors <bors@rust-lang.org>
Mon, 16 Aug 2021 14:09:42 +0000 (14:09 +0000)
committerbors <bors@rust-lang.org>
Mon, 16 Aug 2021 14:09:42 +0000 (14:09 +0000)
commite8a78cc5a8abaf69e87b2b52e95b3f8bb03384ed
tree7fe0019682d8f0181b9e327b31dc55c7952e8354
parentddf9adba1afb4654edba09ca2b62a59979fcd895
parentf0909c7a6ca5c45d86c0c8bc4017253d8042db41
Auto merge of #9789 - ehuss:fix-value-after-table-profile, r=alexcrichton

Fix value-after-table error with profiles.

If the `strip`, `dir-name`, or `inherits` fields were included along with a profile override, then `cargo publish` would fail with a `ValueAfterTable` error because the fields were listed in the wrong order in the struct definition.

Fixes #9787