-
Notifications
You must be signed in to change notification settings - Fork 129
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
fix: reset the changes introduced in getrandom
import as dep
#286
Conversation
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
Cargo.toml
Outdated
] | ||
resolver = "2" No newline at end of file | ||
] |
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.
Was the resolver 2 an issue for the getrandom
usage as dev-dep
?? I'd have expected the oposite 😮
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.
Yes, it was.
Without this option, the default resolver is "1".
It resolves the issue.
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.
That's really weird.. resolver = 2
is the "powerful" one. The one that allows same dep with different features for dep/dev-dep. So it's confusing that the resolver=1 solves the issue :/
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.
Same here.
Seems that |
Done it. |
370cc1b
to
8f369ba
Compare
Description
getrandom
crate import change caused by refactor: move thehalo2_common::arithmetic
tohalo2_backend
(post fe-be split) #281Related issues
Changes
getrandom
crate asdev-dependency
forwasm32-*
target build CIresolver = "2"
option from workspace cargo.toml