forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize Sender Recovery Process (paradigmxyz#11385) chore: simplify update fn (paradigmxyz#11880) bump rust to 1.82 (paradigmxyz#11876) rpc: add unit tests for `RpcModuleSelection` (paradigmxyz#11883) feat: tasks executor metrics in grafana (paradigmxyz#11815) Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> refactor(txpool): small refactor for `InMemoryBlobStore` impl (paradigmxyz#11886) primitives: use alloy `MAXIMUM_EXTRA_DATA_SIZE` constant (paradigmxyz#11881) test(txpool): add unit test for `BlobStoreCanonTracker` (paradigmxyz#11885) refactor: move `EngineValidator` setup to `RpcAddOns` (paradigmxyz#11850) feat: update el requests for devnet 4 (paradigmxyz#11865) Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de> check more features
- Loading branch information
1 parent
9c8f5d8
commit 0971015
Showing
180 changed files
with
2,511 additions
and
1,936 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
version: | ||
format: 1 | ||
# Minimum zepter version that is expected to work. This is just for printing a nice error | ||
# message when someone tries to use an older version. | ||
binary: 0.13.2 | ||
|
||
# The examples in the following comments assume crate `A` to have a dependency on crate `B`. | ||
workflows: | ||
check: | ||
- [ | ||
"lint", | ||
# Check that `A` activates the features of `B`. | ||
"propagate-feature", | ||
# These are the features to check: | ||
"--features=std,optimism,dev,asm-keccak,jemalloc,jemalloc-prof,tracy-allocator,serde-bincode-compat,serde,test-utils,arbitrary,bench", | ||
# Do not try to add a new section into `[features]` of `A` only because `B` expose that feature. There are edge-cases where this is still needed, but we can add them manually. | ||
"--left-side-feature-missing=ignore", | ||
# Ignore the case that `A` it outside of the workspace. Otherwise it will report errors in external dependencies that we have no influence on. | ||
"--left-side-outside-workspace=ignore", | ||
# Auxillary flags: | ||
"--offline", | ||
"--locked", | ||
"--show-path", | ||
"--quiet", | ||
] | ||
default: | ||
# Running `zepter` with no subcommand will check & fix. | ||
- [$check.0, "--fix"] | ||
|
||
# Will be displayed when any workflow fails: | ||
help: | ||
text: | | ||
Reth uses the Zepter CLI to detect abnormalities in Cargo features, e.g. missing propagation. | ||
It looks like one more more checks failed; please check the console output. | ||
You can try to automatically address them by installing zepter (`cargo install zepter --locked`) and simply running `zepter` in the workspace root. | ||
links: | ||
- "https://github.com/paradigmxyz/reth/pull/11888" | ||
- "https://github.com/ggwpez/zepter" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.