-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TomlProject.version field should be stored directly as a Version, to enable better error messages #54
Comments
alexcrichton
added a commit
to alexcrichton/cargo
that referenced
this issue
Aug 26, 2014
This generates errors for malformed semver versions during the decoding process rather than later in the convertion to a package id. This also cuts down on the large number of derived traits to only what's necessary. Closes rust-lang#54
bors
added a commit
that referenced
this issue
Aug 27, 2014
This generates errors for malformed semver versions during the decoding process rather than later in the convertion to a package id. This also cuts down on the large number of derived traits to only what's necessary. Closes #54
alexcrichton
added a commit
to alexcrichton/cargo
that referenced
this issue
Sep 2, 2014
This generates errors for malformed semver versions during the decoding process rather than later in the convertion to a package id. This also cuts down on the large number of derived traits to only what's necessary. Closes rust-lang#54
bors
added a commit
to alexcrichton/cargo
that referenced
this issue
Sep 2, 2014
This generates errors for malformed semver versions during the decoding process rather than later in the convertion to a package id. This also cuts down on the large number of derived traits to only what's necessary. Closes rust-lang#54
ehuss
pushed a commit
to ehuss/cargo
that referenced
this issue
Nov 19, 2023
54: Don't loop{} on errors during suggestion parsing r=killercup a=oli-obk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Marked in the code with a fixme.
I believe this would either require replacing some of the
#[deriving(Decodable)]
instances inutil::toml
with manual ones, or fixing rust-lang/rust#15036.The text was updated successfully, but these errors were encountered: