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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ rstest = "0.25.0"
tap_aggregator = { version = "0.6.0", path = "tap_aggregator" }
tap_eip712_message = { version = "0.2.2", path = "tap_eip712_message" }
tap_core = { version = "6.0.0", path = "tap_core" }
tap_graph = { version = "0.3.4", path = "tap_graph", features = ["v2"] }
tap_graph = { version = "0.3.4", path = "tap_graph" }
tap_receipt = { version = "1.1.3", path = "tap_receipt" }
thegraph-core = "0.15.1"
thiserror = "2.0.12"
Expand Down
4 changes: 0 additions & 4 deletions tap_aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ repository.workspace = true
readme = "README.md"
description = "A JSON-RPC service for the Timeline Aggregation Protocol that lets clients request an aggregate receipt from a list of individual receipts."

[features]
default = ["v2"]
v2 = ["tap_graph/v2"]

[[bin]]
name = "tap_aggregator"
path = "src/main.rs"
Expand Down
9 changes: 1 addition & 8 deletions tap_aggregator/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {

tonic_prost_build::configure()
.build_server(true)
.compile_protos(
&[
"proto/uint128.proto",
"proto/tap_aggregator.proto",
"proto/v2.proto",
],
&["proto"],
)?;
.compile_protos(&["proto/uint128.proto", "proto/v2.proto"], &["proto"])?;

Ok(())
}
40 changes: 0 additions & 40 deletions tap_aggregator/proto/tap_aggregator.proto

This file was deleted.

Loading
Loading