-
Notifications
You must be signed in to change notification settings - Fork 113
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
Update Discv5 version #212
Conversation
5ba3d48
to
a59349c
Compare
@carver Ping for thoughts on #186 - I'm a bit baffled as to what's going on with this one. IMO it comes down to the kind of error that's being emitted ( From what I can tell, we're well set up to raise this warning as an error. We have I've tried a couple other approaches to catch this warning
IMO it comes down to us using multiple crates in a workspace. It seems to be a fairly problematic setup for various config / passing rustc settings to cargo (here and here) Any thoughts as to whether you want me to fix the warning in this pr (by adding a |
a59349c
to
a3cc89c
Compare
a3cc89c
to
ace7819
Compare
I addressed this issue in #209 (sorry for not including it in the PR description). I think removing |
ace7819
to
352c736
Compare
@ogenev Oh nice, yeah that makes sense to me. I've removed the redundant |
.circleci/config.yml
Outdated
@@ -10,7 +10,7 @@ jobs: | |||
name: rust/default | |||
tag: 1.56.1 | |||
environment: | |||
RUSTFLAGS: '-D warnings' | |||
RUSTFLAGS: '-Dwarnings' |
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.
Is this a typo, shouldn't be -D warnings
?
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 don't believe so. In many of the various blogs/forums I read about this I saw both -D warnings
and -Dwarnings
used interchangeably as the RUSTFLAGS
env variable. But, I've changed it back to its original -D warnings
since yeah I'd agree it's more obviously not a typo
Yeah, this is definitely the reason for #186, to prevent new warnings to show up. The existing warning was just a convenient way to test that we can configure CI to catch that special type of warning. So in summary:
|
Fixes #182
Maybe fixes # 186