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
5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", features = ["raw_value"] }
strum = { version = "0.27.1", features = ["derive"] }
rstest = "0.25.0"
graph_tally_aggregator = { version = "0.6.4", path = "crates/aggregator" }
graph_tally_eip712_message = { version = "0.2.3", path = "crates/eip712_message" }
graph_tally_core = { version = "6.0.3", path = "crates/core" }
graph_tally_graph = { version = "0.3.5", path = "crates/graph" }
graph_tally_receipt = { version = "1.1.4", path = "crates/receipt" }
thegraph-core = "0.15.1"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["macros", "signal"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ rdkafka.workspace = true
serde.workspace = true
serde_json.workspace = true
strum.workspace = true
graph_tally_core.workspace = true
graph_tally_graph.workspace = true
graph_tally_core = { path = "../core" }
graph_tally_graph = { path = "../graph" }
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
tokio.workspace = true
tonic.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ description = "Core Graph Tally library: a fast, efficient and trustless unidire
anyhow.workspace = true
async-trait.workspace = true
rand.workspace = true
graph_tally_eip712_message.workspace = true
graph_tally_graph = { workspace = true, optional = true }
graph_tally_receipt.workspace = true
graph_tally_eip712_message = { path = "../eip712_message" }
graph_tally_graph = { path = "../graph", optional = true }
graph_tally_receipt = { path = "../receipt" }
thegraph-core.workspace = true
thiserror.workspace = true
tokio.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ description = "The Graph Tally receipt structs"
[dependencies]
rand.workspace = true
serde.workspace = true
graph_tally_eip712_message.workspace = true
graph_tally_receipt.workspace = true
graph_tally_eip712_message = { path = "../eip712_message" }
graph_tally_receipt = { path = "../receipt" }
thegraph-core.workspace = true

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ description = "Integration tests for Graph Tally."
publish = false

[dependencies]
graph_tally_aggregator.workspace = true
graph_tally_core.workspace = true
graph_tally_graph.workspace = true
graph_tally_aggregator = { path = "../aggregator" }
graph_tally_core = { path = "../core" }
graph_tally_graph = { path = "../graph" }

anyhow.workspace = true
jsonrpsee = { workspace = true, features = ["jsonrpsee-http-client"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/receipt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ anyhow.workspace = true
anymap3.workspace = true
async-trait.workspace = true
serde.workspace = true
graph_tally_eip712_message.workspace = true
graph_tally_eip712_message = { path = "../eip712_message" }
thegraph-core.workspace = true
thiserror.workspace = true

Expand Down
Loading