-
Notifications
You must be signed in to change notification settings - Fork 0
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
Parse dependency requirements #80
base: latest
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## latest #80 +/- ##
==========================================
+ Coverage 61.67% 71.38% +9.71%
==========================================
Files 33 6 -27
Lines 1829 713 -1116
==========================================
- Hits 1128 509 -619
+ Misses 701 204 -497
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
// Recursively print their deps | ||
while let Some(prj) = projects.pop_front() { | ||
for dep in prj.dependencies() { | ||
println!("+ {dep}"); |
Check failure
Code scanning / clippy
std::result::Result<ring_utils::Dependency, anyhow::Error> doesn't implement std::fmt::Display Error
// Recursively print their deps | ||
while let Some(prj) = projects.pop_front() { | ||
for dep in prj.dependencies() { | ||
println!("+ {dep}"); |
Check failure
Code scanning / clippy
std::result::Result<ring_utils::Dependency, anyhow::Error> doesn't implement std::fmt::Display Error
No description provided.