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
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jsonrpsee-core = "0.25.1"
lazy_static = "1.5.0"
log = "0.4.27"
prometheus = "0.14.0"
prost = "0.13.5"
prost = "0.14.1"
rand = "0.9.1"
rayon = "1.10.0"
rdkafka = { version = "0.37.0", features = ["tokio", "sasl"] }
Expand All @@ -53,7 +53,8 @@ tap_receipt = { version = "1.1.2", path = "tap_receipt" }
thegraph-core = "0.15.1"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["macros", "signal"] }
tonic = { version = "0.13.0", features = ["transport", "zstd"] }
tonic-build = "0.13.0"
tonic = { version = "0.14.1", features = ["transport", "zstd"] }
tonic-build = "0.14.1"
tonic-prost-build = "0.14.1"
tower = { version = "0.5.2", features = ["util", "steer"] }
tracing-subscriber = "0.3.19"
2 changes: 2 additions & 0 deletions tap_aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ tap_graph.workspace = true
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
tokio.workspace = true
tonic.workspace = true
tonic-prost = "0.14.1"
tower = { workspace = true, features = ["util", "steer", "limit"] }
tracing-subscriber.workspace = true

[build-dependencies]
tonic-build.workspace = true
tonic-prost-build.workspace = true

[dev-dependencies]
rand.workspace = true
Expand Down
18 changes: 10 additions & 8 deletions tap_aggregator/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let out_dir = std::env::var("OUT_DIR").expect("OUT_DIR not set by Cargo");
println!("OUT_DIR: {out_dir}"); // This should print the output directory

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

Ok(())
}
1 change: 0 additions & 1 deletion tap_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ thiserror.workspace = true
tokio.workspace = true

[dev-dependencies]
criterion.workspace = true
insta.workspace = true
rstest.workspace = true
serde_json.workspace = true
Expand Down
1 change: 0 additions & 1 deletion tap_eip712_message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ serde.workspace = true
thegraph-core.workspace = true
thiserror.workspace = true


[dev-dependencies]
tap_graph.workspace = true