Skip to content

Commit

Permalink
fix: clean up rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML committed Jan 7, 2025
1 parent 9af91d9 commit 05bd46a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
25 changes: 14 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ members = [
"bin/poll-latest",
"bin/purge-invalid-history-content",
"bin/sample-range",
"bin/trin",
"bin/test-providers",
"bin/trin",
"ethportal-api",
"ethportal-peertest",
"e2store",
Expand Down Expand Up @@ -49,12 +49,10 @@ clap = { version = "4.2.1", features = ["derive"] }
delay_map = "0.4.0"
directories = "3.0"
discv5 = { version = "0.4.1", features = ["serde"] }
e2store = { path = "e2store" }
env_logger = "0.9.0"
eth_trie = "0.5.0"
ethereum_ssz = "0.7.1"
ethereum_ssz_derive = "0.7.1"
ethportal-api = { path = "ethportal-api" }
futures = "0.3.23"
futures-util = "0.3.23"
hex = "0.4.3"
Expand All @@ -63,10 +61,7 @@ itertools = "0.13.0"
jsonrpsee = "0.24.4"
keccak-hash = "0.10.0"
lazy_static = "1.4.0"
light-client = { path = "light-client" }
parking_lot = "0.11.2"
portal-bridge = { path = "portal-bridge" }
portalnet = { path = "portalnet" }
prometheus_exporter = "0.8.4"
quickcheck = "1.0.3"
r2d2 = "0.8.9"
Expand All @@ -76,7 +71,6 @@ reqwest = { version = "0.12.7", features = ["native-tls-vendored", "json"] }
reth-ipc = { tag = "v1.0.8", git = "https://github.com/paradigmxyz/reth.git"}
revm = { version = "14.0.3", default-features = false, features = ["std", "secp256k1", "serde-json", "c-kzg"] }
revm-primitives = { version = "10.0.0", default-features = false, features = ["std", "serde"] }
rpc = { path = "rpc"}
rstest = "0.18.2"
rusqlite = { version = "0.31.0", features = ["bundled"] }
scraper = "0.18.1"
Expand All @@ -99,6 +93,19 @@ tracing-subscriber = "0.3.15"
tracing-test = "0.1"
tree_hash = "0.8.0"
tree_hash_derive = "0.8.0"
uds_windows = "1.0.1"
ureq = { version = "2.5.0", features = ["json"] }
url = "2.3.1"
utp-rs = { tag = "v0.1.0-alpha.14", git = "https://github.com/ethereum/utp" }

# Trin workspace crates
e2store = { path = "e2store" }
ethportal-api = { path = "ethportal-api" }
light-client = { path = "light-client" }
portal-bridge = { path = "portal-bridge" }
portalnet = { path = "portalnet" }
rpc = { path = "rpc"}
trin = { path = "bin/trin"}
trin-beacon = { path = "trin-beacon" }
trin-evm = { path = "trin-evm" }
trin-execution = { path = "trin-execution" }
Expand All @@ -108,7 +115,3 @@ trin-state = { path = "trin-state" }
trin-storage = { path = "trin-storage" }
trin-utils = { path = "trin-utils" }
trin-validation = { path = "trin-validation" }
uds_windows = "1.0.1"
ureq = { version = "2.5.0", features = ["json"] }
url = "2.3.1"
utp-rs = { tag = "v0.1.0-alpha.14", git = "https://github.com/ethereum/utp" }
4 changes: 2 additions & 2 deletions bin/trin/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use ethportal_api::{
network::Subnetwork,
portal_wire::{NetworkSpec, MAINNET},
},
version::VERSION,
version::FULL_VERSION,
};
use portalnet::{
bootnodes::Bootnodes,
Expand All @@ -39,7 +39,7 @@ const APP_NAME: &str = "trin";
#[command(name = APP_NAME,
author = "https://github.com/ethereum/trin/graphs/contributors",
about = "Run an eth portal client",
version = VERSION
version = FULL_VERSION
)]
pub struct TrinConfig {
#[arg(
Expand Down
2 changes: 1 addition & 1 deletion ethportal-peertest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tree_hash.workspace = true
trin = { path = "../bin/trin" }
trin.workspace = true
trin-history.workspace = true
trin-state.workspace = true
trin-utils.workspace = true
Expand Down

0 comments on commit 05bd46a

Please sign in to comment.