diff --git a/Cargo.lock b/Cargo.lock index fcd1ad149..f77f61690 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1793,12 +1793,6 @@ version = "3.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" -[[package]] -name = "by_address" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06" - [[package]] name = "byte-slice-cast" version = "1.2.3" @@ -2736,18 +2730,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "eventuals" -version = "0.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0450e5c57135f799007162ff8beba7b2809d4a018cf9cdcbca2c319a73d9d8ee" -dependencies = [ - "by_address", - "futures", - "never", - "tokio", -] - [[package]] name = "fastrand" version = "2.3.0" @@ -4016,7 +3998,6 @@ dependencies = [ "bon 3.6.3", "clap", "educe", - "eventuals", "futures", "futures-util", "graphql_client", @@ -4885,12 +4866,6 @@ dependencies = [ "tempfile", ] -[[package]] -name = "never" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c96aba5aa877601bb3f6dd6a63a969e1f82e60646e81e71b14496995e9853c91" - [[package]] name = "nix" version = "0.26.4" diff --git a/Cargo.toml b/Cargo.toml index 1fa7cfaa4..240e0cfa0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,6 @@ build-info-build = { version = "0.0.40", default-features = false } clap = "4.4.3" educe = "0.6.0" env_logger = { version = "0.11.0", default-features = false } -eventuals = "0.6.7" futures = "0.3" futures-util = { version = "0.3.28", default-features = false } graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] } diff --git a/crates/tap-agent/Cargo.toml b/crates/tap-agent/Cargo.toml index 518e4816e..80e8329fd 100644 --- a/crates/tap-agent/Cargo.toml +++ b/crates/tap-agent/Cargo.toml @@ -28,7 +28,6 @@ reqwest.workspace = true serde.workspace = true serde_json.workspace = true thiserror.workspace = true -eventuals.workspace = true tracing.workspace = true prometheus.workspace = true axum.workspace = true diff --git a/crates/tap-agent/src/tap/context/escrow.rs b/crates/tap-agent/src/tap/context/escrow.rs index 28efa2d34..c8fc459d3 100644 --- a/crates/tap-agent/src/tap/context/escrow.rs +++ b/crates/tap-agent/src/tap/context/escrow.rs @@ -7,15 +7,6 @@ use thegraph_core::alloy::primitives::Address; use super::{error::AdapterError, NetworkVersion, TapAgentContext}; -// Conversion from eventuals::error::Closed to AdapterError::EscrowEventualError -impl From for AdapterError { - fn from(e: eventuals::error::Closed) -> Self { - AdapterError::EscrowEventualError { - error: format!("{:?}", e), - } - } -} - /// Implements the SignatureChecker for any [NetworkVersion] #[async_trait] impl SignatureChecker for TapAgentContext {