-
Notifications
You must be signed in to change notification settings - Fork 179
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
[ANE-1659] update cargo metadata ID parser #1416
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3d96217
add support for parsing cargo metadata IDs for cargo >= 1.77.0
spatten 11f2dce
tests for parsing new version
spatten cb09d6c
clean up the comments
spatten e5a01bc
add a changelog entry
spatten eec76bc
Mostly get the parsing right.
csasarak 252889b
Make existing test cases work.
csasarak 2ca59d5
Cleanup, support a few additional spec formats.
csasarak e8fc1d4
Commentary.
csasarak d53e5c7
Report version.
csasarak a8a2934
Handle an additional format correctly. Use final bit after a / for na…
csasarak 510e30e
Apply suggestions from code review
csasarak 7d7ed83
Address some final cleanup.
csasarak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"packages": [ ], | ||
"workspace_members": [ | ||
"path+file:///path/to/jfmt.rs#jfmt@1.0.0" | ||
], | ||
"workspace_default_members": [ | ||
"path+file:///path/to/jfmt.rs#jfmt@1.0.0" | ||
], | ||
"resolve": { | ||
"nodes": [ | ||
{ | ||
"id": "registry+https://github.com/rust-lang/crates.io-index#ansi_term", | ||
"dependencies": [ | ||
"registry+https://github.com/rust-lang/crates.io-index#winapi@0.3.6" | ||
], | ||
"deps": [], | ||
"features": [] | ||
}, | ||
{ | ||
"id": "file:///path/to/my/project/foo", | ||
"dependencies": [], | ||
"deps": [], | ||
"features": [] | ||
}, | ||
{ | ||
"id": "file:///path/to/my/project/bar#2.0.0", | ||
"dependencies": [], | ||
"deps": [], | ||
"features": [] | ||
}, | ||
{ | ||
"id": "registry+https://github.com/rust-lang/crates.io-index#clap:2.33.0", | ||
"deps": [ | ||
{ | ||
"name": "ansi_term", | ||
"pkg": "registry+https://github.com/rust-lang/crates.io-index#ansi_term@0.11.0", | ||
"dep_kinds": [ | ||
{ | ||
"kind": null, | ||
"target": "cfg(not(windows))" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "path+file:///path/to/jfmt.rs#jfmt@1.0.0", | ||
"dependencies": [ | ||
"registry+https://github.com/rust-lang/crates.io-index#clap@2.33.0" | ||
], | ||
"deps": [ | ||
{ | ||
"name": "clap", | ||
"pkg": "registry+https://github.com/rust-lang/crates.io-index#clap@2.33.0", | ||
"dep_kinds": [ | ||
{ | ||
"kind": null, | ||
"target": null | ||
} | ||
] | ||
} | ||
], | ||
"features": [] | ||
} | ||
], | ||
"root": "path+file:///path/to/jfmt.rs#jfmt@1.0.0" | ||
}, | ||
"target_directory": "/Users/scott/code/rust/jfmt.rs/target", | ||
"version": 1, | ||
"workspace_root": "/Users/scott/code/rust/jfmt.rs", | ||
"metadata": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,4 @@ | |
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comments you added in this file are great!! It makes it really easy to follow and understand the implementation logic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scott wrote the big one and made the testing setup, so thank you @spatten .