chore: rename exex example crate names (#7851)

This commit is contained in:
Oliver Nordbjerg
2024-04-24 23:34:41 +02:00
committed by GitHub
parent 766e77a811
commit 0e8e573180
3 changed files with 38 additions and 38 deletions

72
Cargo.lock generated
View File

@ -2758,6 +2758,42 @@ dependencies = [
"tokio", "tokio",
] ]
[[package]]
name = "exex-minimal"
version = "0.0.0"
dependencies = [
"eyre",
"futures",
"reth",
"reth-exex",
"reth-node-api",
"reth-node-core",
"reth-node-ethereum",
"reth-primitives",
"reth-tracing",
"tokio",
]
[[package]]
name = "exex-op-bridge"
version = "0.0.0"
dependencies = [
"alloy-sol-types",
"eyre",
"futures",
"itertools 0.12.1",
"reth",
"reth-exex",
"reth-node-api",
"reth-node-core",
"reth-node-ethereum",
"reth-primitives",
"reth-provider",
"reth-tracing",
"rusqlite",
"tokio",
]
[[package]] [[package]]
name = "eyre" name = "eyre"
version = "0.6.12" version = "0.6.12"
@ -4713,22 +4749,6 @@ dependencies = [
"unicase", "unicase",
] ]
[[package]]
name = "minimal"
version = "0.0.0"
dependencies = [
"eyre",
"futures",
"reth",
"reth-exex",
"reth-node-api",
"reth-node-core",
"reth-node-ethereum",
"reth-primitives",
"reth-tracing",
"tokio",
]
[[package]] [[package]]
name = "minimal-lexical" name = "minimal-lexical"
version = "0.2.1" version = "0.2.1"
@ -5072,26 +5092,6 @@ version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "op-bridge"
version = "0.0.0"
dependencies = [
"alloy-sol-types",
"eyre",
"futures",
"itertools 0.12.1",
"reth",
"reth-exex",
"reth-node-api",
"reth-node-core",
"reth-node-ethereum",
"reth-primitives",
"reth-provider",
"reth-tracing",
"rusqlite",
"tokio",
]
[[package]] [[package]]
name = "opaque-debug" name = "opaque-debug"
version = "0.3.1" version = "0.3.1"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "minimal" name = "exex-minimal"
version = "0.0.0" version = "0.0.0"
publish = false publish = false
edition.workspace = true edition.workspace = true

View File

@ -1,5 +1,5 @@
[package] [package]
name = "op-bridge" name = "exex-op-bridge"
version = "0.0.0" version = "0.0.0"
publish = false publish = false
edition.workspace = true edition.workspace = true