Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Aug 21, 2024
1 parent c337a68 commit 0e8af15
Show file tree
Hide file tree
Showing 8 changed files with 10,374 additions and 174 deletions.
10,147 changes: 10,147 additions & 0 deletions Cargo.lock

Large diffs are not rendered by default.

43 changes: 38 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,43 @@
[workspace]
members = ["crates/exex/*"]
members = ["exex/state-space"]
resolver = "2"

[workspace.package]
repository = ""
homepage = ""
exclude = ["**/target", "benches/", "tests"]
# [workspace.package]

[workspace.dependencies]
amms = "0.6.2"


# reth
reth = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-chainspec = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-discv5 = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
reth-execution-errors = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", features = [
"serde",
], version = "1.0.4" }
# reth-network-peers = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-provider = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-revm = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-evm = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }
# reth-tracing = { git = "https://github.com/paradigmxyz/reth", version = "1.0.4" }

# alloy
alloy-sol-types = { version = "0.7", features = ["json"] }

# async
futures = "0.3"
futures-util = "0.3"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"

# misc
eyre = "0.6"

# testing
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }
8 changes: 0 additions & 8 deletions crates/exex/state_space/Cargo.toml

This file was deleted.

161 changes: 0 additions & 161 deletions crates/exex/state_space/src/lib.rs

This file was deleted.

28 changes: 28 additions & 0 deletions exex/state-space/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

[package]
name = "state-space-exex"
description = ""
version = "0.1.0"


[dependencies]
amms.workspace = true

# reth
reth.workspace = true
# reth-chainspec.workspace = true
# reth-discv5.workspace = true
reth-execution-errors.workspace = true
reth-execution-types.workspace = true
reth-exex.workspace = true
# reth-network-peers.workspace = true
reth-node-api.workspace = true
# reth-node-ethereum.workspace = true
reth-primitives.workspace = true
# reth-provider.workspace = true
# reth-revm.workspace = true
# reth-evm.workspace = true
# reth-tracing.workspace = true


tokio.workspace = true
File renamed without changes.
Loading

0 comments on commit 0e8af15

Please sign in to comment.