Skip to content

Commit 7650b2a

Browse files
committed
fix: import own items via workspace not crate
Signed-off-by: Joseph Livesey <[email protected]>
1 parent a3384a2 commit 7650b2a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tap_aggregator/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ serde.workspace = true
2828
serde_json.workspace = true
2929
strum.workspace = true
3030
tap_core.workspace = true
31+
tap_eip712_message.workspace = true
3132
tap_graph.workspace = true
3233
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
3334
tokio.workspace = true

tap_eip712_message/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
//!
99
//! # Example
1010
//! ```rust
11-
//! # use thegraph_core::alloy::{dyn_abi::Eip712Domain, primitives::Address, signers::local::PrivateKeySigner};
11+
//! # use tap_eip712_message::{Eip712SignedMessage, PrivateKeySigner, Eip712Domain};
12+
//! # use thegraph_core::alloy::primitives::Address;
1213
//! # let domain_separator = Eip712Domain::default();
13-
//! use tap_eip712_message::Eip712SignedMessage;
1414
//! # let wallet = PrivateKeySigner::random();
1515
//! # let wallet_address = wallet.address();
1616
//! # let message = msg::Receipt::new(Address::from([0x11u8; 20]), 100).unwrap();

tap_integration_tests/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ anyhow.workspace = true
1717
jsonrpsee = { workspace = true, features = ["jsonrpsee-http-client"] }
1818
jsonrpsee-core.workspace = true
1919
rand.workspace = true
20-
thegraph-core.workspace = true
20+
thegraph-core = { workspace = true, features = ["alloy-signer-mnemonic"] }
2121
tokio.workspace = true
2222

2323
[dev-dependencies]
2424
rstest.workspace = true
25-
thegraph-core = { workspace = true, features = ["alloy-signer-mnemonic"] }
2625

2726
[[test]]
2827
name = "integration_tests"

0 commit comments

Comments
 (0)