Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 15 additions & 1 deletion bin/tempo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ tempo-consensus.workspace = true
tempo-evm.workspace = true
tempo-faucet.workspace = true

alloy = { workspace = true, default-features = false, features = [
"network",
"rpc",
"rpc-types",
"transports",
"providers",
"provider-http",
"provider-ws",
"reqwest-rustls-tls",
] }
alloy-consensus.workspace = true
alloy-primitives.workspace = true
alloy-provider = { workspace = true, features = [
Expand All @@ -44,12 +54,15 @@ serde.workspace = true
serde_json.workspace = true
tempo-alloy.workspace = true
tempo-contracts.workspace = true
tempo-primitives = { workspace = true, features = ["reth"] }
tempo-dkg-onchain-artifacts.workspace = true
reth-chainspec.workspace = true
reth-cli-commands.workspace = true
reth-cli-runner.workspace = true
reth-cli-util.workspace = true
reth-eth-wire-types.workspace = true
rustls.workspace = true
reth-ethereum = { workspace = true, features = ["full", "cli"] }
reth-ethereum = { workspace = true, features = ["full", "cli", "network"] }
reth-ethereum-cli.workspace = true
reth-node-builder.workspace = true
reth-rpc-server-types.workspace = true
Expand All @@ -70,6 +83,7 @@ path = "src/main.rs"
default = ["asm-keccak", "jemalloc", "otlp"]

asm-keccak = [
"alloy/asm-keccak",
"alloy-primitives/asm-keccak",
"tempo-alloy/asm-keccak",
"tempo-node/asm-keccak",
Expand Down
1 change: 1 addition & 0 deletions bin/tempo/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
static ALLOC: reth_cli_util::allocator::Allocator = reth_cli_util::allocator::new_allocator();

mod defaults;
mod p2p_proxy;
mod tempo_cmd;

use clap::Parser;
Expand Down
Loading
Loading