diff --git a/book/sources/exex/hello-world/Cargo.toml b/book/sources/exex/hello-world/Cargo.toml index e5d32a1405499..672bd2332d5d5 100644 --- a/book/sources/exex/hello-world/Cargo.toml +++ b/book/sources/exex/hello-world/Cargo.toml @@ -4,10 +4,10 @@ version = "0.1.0" edition = "2021" [dependencies] -reth = { git = "https://github.com/paradigmxyz/reth.git" } # Reth -reth-exex = { git = "https://github.com/paradigmxyz/reth.git" } # Execution Extensions -reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth.git" } # Ethereum Node implementation -reth-tracing = { git = "https://github.com/paradigmxyz/reth.git" } # Logging +reth = { path = "../../../../bin/reth" } # Reth +reth-exex = { path = "../../../../crates/exex/exex" } # Execution Extensions +reth-node-ethereum = { path = "../../../../crates/ethereum/node" } # Ethereum Node implementation +reth-tracing = { path = "../../../../crates/tracing" } # Logging -eyre = "0.6" # Easy error handling +eyre = "0.6" # Easy error handling futures-util = "0.3" # Stream utilities for consuming notifications diff --git a/book/sources/exex/remote/Cargo.toml b/book/sources/exex/remote/Cargo.toml index 6cca3a841f071..9d668552055e3 100644 --- a/book/sources/exex/remote/Cargo.toml +++ b/book/sources/exex/remote/Cargo.toml @@ -5,13 +5,11 @@ edition = "2021" [dependencies] # reth -reth = { git = "https://github.com/paradigmxyz/reth.git" } -reth-exex = { git = "https://github.com/paradigmxyz/reth.git", features = [ - "serde", -] } -reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth.git" } -reth-node-api = { git = "https://github.com/paradigmxyz/reth.git" } -reth-tracing = { git = "https://github.com/paradigmxyz/reth.git" } +reth = { path = "../../../../bin/reth" } +reth-exex = { path = "../../../../crates/exex/exex", features = ["serde"] } +reth-node-ethereum = { path = "../../../../crates/ethereum/node" } +reth-node-api = { path = "../../../../crates/node/api" } +reth-tracing = { path = "../../../../crates/tracing" } # async tokio = { version = "1", features = ["full"] } diff --git a/book/sources/exex/tracking-state/Cargo.toml b/book/sources/exex/tracking-state/Cargo.toml index 3ce21b0c34032..619e3b97d8f4f 100644 --- a/book/sources/exex/tracking-state/Cargo.toml +++ b/book/sources/exex/tracking-state/Cargo.toml @@ -4,11 +4,11 @@ version = "0.1.0" edition = "2021" [dependencies] -reth = { git = "https://github.com/paradigmxyz/reth.git" } -reth-exex = { git = "https://github.com/paradigmxyz/reth.git", features = ["serde"] } -reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth.git"} -reth-tracing = { git = "https://github.com/paradigmxyz/reth.git" } +reth = { path = "../../../../bin/reth" } +reth-exex = { path = "../../../../crates/exex/exex", features = ["serde"] } +reth-node-ethereum = { path = "../../../../crates/ethereum/node" } +reth-tracing = { path = "../../../../crates/tracing" } -eyre = "0.6" # Easy error handling -futures-util = "0.3" # Stream utilities for consuming notifications +eyre = "0.6" # Easy error handling +futures-util = "0.3" # Stream utilities for consuming notifications alloy-primitives = "0.8.7"