Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"crates/tap-agent": "1.7.3",
"crates/common": "1.4.0",
"crates/config": "1.2.1",
"crates/service": "1.3.2"
}
105 changes: 62 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[workspace]
members = [
"crates/common",
"crates/allocation",
"crates/attestation",
"crates/config",
"crates/dips",
"crates/monitor",
"crates/query",
"crates/service",
"crates/tap-agent",
"crates/types",
"crates/tests/tap-utils",
"crates/test-assets",
"crates/watcher",
]
resolver = "2"

Expand Down Expand Up @@ -68,3 +70,4 @@ thegraph-core = { git = "https://github.com/edgeandnode/toolshed", rev = "166353
] }
thegraph-graphql-http = "0.2.0"
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
bip39 = "2.0.0"
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml → crates/allocation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "indexer-types"
name = "indexer-allocation"
version = "0.1.0"
edition = "2021"

Expand Down
File renamed without changes.
15 changes: 15 additions & 0 deletions crates/attestation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "indexer-attestation"
version = "0.1.0"
edition = "2021"

[dependencies]
indexer-allocation = { path = "../allocation" }
alloy.workspace = true
thegraph-core.workspace = true
anyhow.workspace = true


[dev-dependencies]
test-log = { version = "0.2.12", default-features = false }
test-assets = { path = "../test-assets" }
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use alloy::{
};
use thegraph_core::{attestation, Address, Attestation, ChainId, DeploymentId};

use indexer_types::Allocation;
use indexer_allocation::Allocation;

pub fn derive_key_pair(
indexer_mnemonic: &str,
Expand Down Expand Up @@ -121,8 +121,8 @@ mod tests {
use std::str::FromStr;
use test_log::test;

use crate::test_vectors::DISPUTE_MANAGER_ADDRESS;
use indexer_types::{Allocation, AllocationStatus, SubgraphDeployment};
use indexer_allocation::{Allocation, AllocationStatus, SubgraphDeployment};
use test_assets::DISPUTE_MANAGER_ADDRESS;

use super::*;

Expand Down
51 changes: 0 additions & 51 deletions crates/common/CHANGELOG.md

This file was deleted.

36 changes: 0 additions & 36 deletions crates/common/Cargo.toml

This file was deleted.

8 changes: 0 additions & 8 deletions crates/common/src/attestation/mod.rs

This file was deleted.

24 changes: 0 additions & 24 deletions crates/common/src/lib.rs

This file was deleted.

Loading
Loading