-
Notifications
You must be signed in to change notification settings - Fork 33
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
refactor(deps): adopt rand 0.9 #854
Conversation
let mut keys = Vec::with_capacity(ITERATIONS); | ||
for _ in 0..ITERATIONS { | ||
let key = zipf.sample(&mut rng).to_string(); | ||
let key = zipf.sample(&mut rng).round() as usize; |
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.
Signed-off-by: tison <wander4096@gmail.com>
Codecov ReportAttention: Patch coverage is
|
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.
LGTM
Thank you for your contribution. 🥰
I found there are some other reactors in this PR such as removing unused APIs and refactors on madsim usage. Please try to open a separate PR for that next time, or briefly mention it in the PR message. But it is totally up to you. 🙌
Thank you again for your efforts.
Thank you again for
AS IS