-
Notifications
You must be signed in to change notification settings - Fork 7
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
chore: update core-crypto
repo to rust 2024 edition [WPB-16113]
#925
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #925 +/- ##
==========================================
+ Coverage 78.13% 78.14% +0.01%
==========================================
Files 112 112
Lines 20280 20318 +38
==========================================
+ Hits 15845 15878 +33
- Misses 4435 4440 +5
Continue to review full report in Codecov by Sentry.
|
column_name = Some(meta.input.parse::<syn::LitStr>()?.value()); | ||
} | ||
"hex" => transformation = Some(IdTransformation::Hex), | ||
_ => return Err(syn::Error::new_spanned(meta.path, "unknown argument")), |
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.
I assume this is the result of cargo fix
-- is this really necessary in our particular case?
} | ||
}, | ||
_ => { | ||
return Err(eyre!("Cryptobox isn't initialized")); |
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.
I prefer the old code.
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.
I think we should not let cargo fix
auto-convert if let
expressions into match
es, unless there is a good for it (I'd be surprised).
Also I'm not sure why we're updating dependencies in this PR.
4d443db
to
7d656ef
Compare
7d656ef
to
dd5dffe
Compare
What's new in this PR
Per edition guide.
PR Submission Checklist for internal contributors
SQPIT-764
feat(conversation-list): Sort conversations by most emojis in the title #SQPIT-764
.