-
Notifications
You must be signed in to change notification settings - Fork 67
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
NOISSUE - Clean up error handling, remove unwrap() calls, logging #188
NOISSUE - Clean up error handling, remove unwrap() calls, logging #188
Conversation
meaningful messages
Sorry for the delay, it seems I missed the notification. I would like add you as maintainer if you are interested? @tarcieri would also need to approve. I'll review this PR now. |
pub trait GetPackageNameFromCargoMetadataPackageId { | ||
fn get_package_name_from_cargo_metadata_package_id( | ||
pub trait GetPackageNameAndVersionFromCargoMetadataPackageId { | ||
fn get_package_name_and_version_from_cargo_metadata_package_id( | ||
&self, | ||
package_id: &cargo_metadata::PackageId, | ||
) -> Option<String>; | ||
} | ||
|
||
pub trait GetPackageVersionFromCargoMetadataPackageId { | ||
fn get_package_version_from_cargo_metadata_package_id( | ||
&self, | ||
package_id: &cargo_metadata::PackageId, | ||
) -> Option<cargo_metadata::Version>; |
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.
Nice simplification. 👍
The new error messages look great! |
Hi @anderejd, I'd definitely be keen to be added as a maintainer! |
@tarcieri Since this project now exists under rust-secure-code it seems reasonable to me to have you on board with adding another maintainer. Your thoughts? |
@tarcieri Ping |
@jmcconnell26 Invite has been sent! |
Awesome, accepted it now! |
meaningful messages