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: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,15 @@ 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"
tap_graph = { version = "0.2.1", path = "../tap_graph", features = ["v2"] }
tap_aggregator = { version = "0.5.2", path = "tap_aggregator" }
tap_eip712_message = { version = "0.2.1", path = "tap_eip712_message" }
tap_core = { version = "4.1.1", path = "tap_core" }
tap_graph = { version = "0.3.1", path = "tap_graph", features = ["v2"] }
tap_receipt = { version = "1.1.1", path = "tap_receipt" }
thegraph-core = "0.15.0"
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"
tower = { version = "0.5.2", features = ["util", "steer"] }
tracing-subscriber = "0.3.19"
6 changes: 3 additions & 3 deletions tap_aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ rdkafka.workspace = true
serde.workspace = true
serde_json.workspace = true
strum.workspace = true
tap_core = { path = "../tap_core", version = "4.1.1" }
tap_graph = { version = "0.3.1", path = "../tap_graph", features = ["v2"] }
tap_core.workspace = true
tap_graph.workspace = true
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
tokio.workspace = true
tonic.workspace = true
tower.workspace = true
tracing-subscriber.workspace = true

[build-dependencies]
tonic-build = "0.13.0"
tonic-build.workspace = true

[dev-dependencies]
rand.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions tap_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ description = "Core Timeline Aggregation Protocol library: a fast, efficient and
anyhow.workspace = true
async-trait.workspace = true
rand.workspace = true
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
tap_graph = { version = "0.3.1", path = "../tap_graph", optional = true }
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
tap_eip712_message.workspace = true
tap_graph = { workspace = true, optional = true }
tap_receipt.workspace = true
thegraph-core.workspace = true
thiserror.workspace = true
tokio.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions tap_graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ description = "The Graph TAP receipt structs"
[dependencies]
rand.workspace = true
serde.workspace = true
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
tap_eip712_message.workspace = true
tap_receipt.workspace = true
thegraph-core.workspace = true


Expand Down
6 changes: 3 additions & 3 deletions tap_integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ description = "Integration tests for the Timeline Aggregation Protocol."
publish = false

[dependencies]
tap_aggregator = { path = "../tap_aggregator" }
tap_core = { path = "../tap_core", version = "4.1.1" }
tap_graph = { path = "../tap_graph" }
tap_aggregator.workspace = true
tap_core.workspace = true
tap_graph.workspace = true

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

Expand Down