-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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: add missing KZG point evaluation precompile #5100
Conversation
🦋 Changeset detectedLatest commit: 5f46e74 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Change request: it looks like there is a new transitive dependency that doesn't build on Windows. |
@@ -20,7 +20,7 @@ reqwest = { version = "0.11", features = ["blocking", "json"] } | |||
reqwest-middleware = { version = "0.2.4", default-features = false } | |||
reqwest-retry = { version = "0.3.0", default-features = false } | |||
reqwest-tracing = { version = "0.4.7", default-features = false, optional = true } | |||
revm-primitives = { version = "3.0", default-features = false } | |||
revm-primitives = { git = "https://github.com/Wodann/revm", rev = "451f122", version = "3.1", default-features = false, features = ["hashbrown"] } |
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.
Q: why are we using a fork again here?
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.
We upstreamed 2 changes to revm
that:
- was merged but not released yet
- was not merged yet
69e3407
to
03796a3
Compare
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.
Thanks, LGTM assuming CI passes.
54a8716
to
18f62dc
Compare
In the process of fixing this, I also updated all Rust dependencies to ensure that we could use the latest version of
revm
(v8.0.0)Depends on