-
Notifications
You must be signed in to change notification settings - Fork 6
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 MEV Boost API #192
Update MEV Boost API #192
Conversation
65d0040
to
ecb980a
Compare
|
||
[patch.crates-io] | ||
#zstd-sys = { version = "=2.0.9+zstd.1.5.5" } | ||
zstd-sys = { git = "https://github.com/gyscos/zstd-rs", tag = "zstd-sys-2.0.9" } |
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.
Why zstd-sys need to be patched?
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.
The zstd-sys library needs to be patched because we are using an older version of reth-primitives, which depends on zstd. The newer version of zstd introduces breaking changes that require adjustments.
@@ -1,5 +1,10 @@ | |||
FROM docker.io/library/rust:1.83 AS builder | |||
|
|||
# Install libclang | |||
RUN apt-get update && apt-get install -y \ | |||
libclang-dev \ |
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.
Why is it needed?
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.
It is needed to build c-kzg 0.1.1, which is a dependency required to build reth-primitives
Use blst crate for bls-service
No description provided.