chore(deps): weekly cargo update (#17628)

Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
github-actions[bot]
2025-07-27 18:40:27 +02:00
committed by GitHub
parent 812dd04b80
commit 7ed3ab0ec6
3 changed files with 250 additions and 175 deletions

416
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -471,7 +471,7 @@ revm-inspectors = "0.27.1"
alloy-chains = { version = "0.2.5", default-features = false }
alloy-dyn-abi = "1.3.0"
alloy-eip2124 = { version = "0.2.0", default-features = false }
alloy-evm = { version = "0.15", default-features = false }
alloy-evm = { version = "0.16", default-features = false }
alloy-primitives = { version = "1.3.0", default-features = false, features = ["map-foldhash"] }
alloy-rlp = { version = "0.3.10", default-features = false, features = ["core-net"] }
alloy-sol-macro = "1.3.0"
@@ -509,7 +509,7 @@ alloy-transport-ipc = { version = "1.0.23", default-features = false }
alloy-transport-ws = { version = "1.0.23", default-features = false }
# op
alloy-op-evm = { version = "0.15", default-features = false }
alloy-op-evm = { version = "0.16", default-features = false }
alloy-op-hardforks = "0.2.2"
op-alloy-rpc-types = { version = "0.18.12", default-features = false }
op-alloy-rpc-types-engine = { version = "0.18.12", default-features = false }

View File

@@ -266,7 +266,7 @@ mod tests {
#[test]
fn test_precompile_cache_basic() {
let dyn_precompile: DynPrecompile = |_input: PrecompileInput<'_>| -> PrecompileResult {
Ok(PrecompileOutput { gas_used: 0, bytes: Bytes::default() })
Ok(PrecompileOutput { gas_used: 0, bytes: Bytes::default(), reverted: false })
}
.into();
@@ -276,6 +276,7 @@ mod tests {
let output = PrecompileOutput {
gas_used: 50,
bytes: alloy_primitives::Bytes::copy_from_slice(b"cached_result"),
reverted: false,
};
let key = CacheKey::new(SpecId::PRAGUE, b"test_input".into());
@@ -307,6 +308,7 @@ mod tests {
Ok(PrecompileOutput {
gas_used: 5000,
bytes: alloy_primitives::Bytes::copy_from_slice(b"output_from_precompile_1"),
reverted: false,
})
}
}
@@ -320,6 +322,7 @@ mod tests {
Ok(PrecompileOutput {
gas_used: 7000,
bytes: alloy_primitives::Bytes::copy_from_slice(b"output_from_precompile_2"),
reverted: false,
})
}
}