Skip to content

Commit 2669968

Browse files
committed
chore(deps): remove unused eventuals dependency
Signed-off-by: Lorenzo Delgado <[email protected]>
1 parent f87ef6b commit 2669968

File tree

4 files changed

+0
-36
lines changed

4 files changed

+0
-36
lines changed

Cargo.lock

Lines changed: 0 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ build-info-build = { version = "0.0.40", default-features = false }
4343
clap = "4.4.3"
4444
educe = "0.6.0"
4545
env_logger = { version = "0.11.0", default-features = false }
46-
eventuals = "0.6.7"
4746
futures = "0.3"
4847
futures-util = { version = "0.3.28", default-features = false }
4948
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }

crates/tap-agent/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ reqwest.workspace = true
2828
serde.workspace = true
2929
serde_json.workspace = true
3030
thiserror.workspace = true
31-
eventuals.workspace = true
3231
tracing.workspace = true
3332
prometheus.workspace = true
3433
axum.workspace = true

crates/tap-agent/src/tap/context/escrow.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ use thegraph_core::alloy::primitives::Address;
77

88
use super::{error::AdapterError, NetworkVersion, TapAgentContext};
99

10-
// Conversion from eventuals::error::Closed to AdapterError::EscrowEventualError
11-
impl From<eventuals::error::Closed> for AdapterError {
12-
fn from(e: eventuals::error::Closed) -> Self {
13-
AdapterError::EscrowEventualError {
14-
error: format!("{:?}", e),
15-
}
16-
}
17-
}
18-
1910
/// Implements the SignatureChecker for any [NetworkVersion]
2011
#[async_trait]
2112
impl<T: NetworkVersion + Send + Sync> SignatureChecker for TapAgentContext<T> {

0 commit comments

Comments
 (0)