You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of Rust v1.53.0, the authors field is optional and not automatically added to the project's manifest, Cargo.toml. The current minimum version supported by this project is v1.40.0 and the tests currently run with Rust v1.50.0. However, if the tests are run with a newer version of Rust, >v1.53.0, the integration tests will fail with a Manifest("authors") error.
The test fixtures assume the authors field exist because cargo originally always added the field and it was required. The field is now optional, but it is used for the manufacturer and other metadata of the installer. A backwards compatible fix needs to be added and the assumption changed. The authors field should be treated like the other optional fields, i.e. a warning if not defined.
As of Rust v1.53.0, the
authors
field is optional and not automatically added to the project's manifest,Cargo.toml
. The current minimum version supported by this project is v1.40.0 and the tests currently run with Rust v1.50.0. However, if the tests are run with a newer version of Rust, >v1.53.0, the integration tests will fail with aManifest("authors")
error.The test fixtures assume the
authors
field exist because cargo originally always added the field and it was required. The field is now optional, but it is used for themanufacturer
and other metadata of the installer. A backwards compatible fix needs to be added and the assumption changed. Theauthors
field should be treated like the other optional fields, i.e. a warning if not defined.References
The text was updated successfully, but these errors were encountered: