Skip to content

Commit 6d7f470

Browse files
committed
fix: better organize dependencies
Signed-off-by: Joseph Livesey <[email protected]>
1 parent d540360 commit 6d7f470

File tree

6 files changed

+18
-13
lines changed

6 files changed

+18
-13
lines changed

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,15 @@ serde = { version = "1.0.219", features = ["derive"] }
4545
serde_json = { version = "1.0.140", features = ["raw_value"] }
4646
strum = { version = "0.27.1", features = ["derive"] }
4747
rstest = "0.25.0"
48-
tap_graph = { version = "0.2.1", path = "../tap_graph", features = ["v2"] }
48+
tap_aggregator = { version = "0.5.2", path = "tap_aggregator" }
49+
tap_eip712_message = { version = "0.2.1", path = "tap_eip712_message" }
50+
tap_core = { version = "4.1.1", path = "tap_core" }
51+
tap_graph = { version = "0.3.1", path = "tap_graph", features = ["v2"] }
52+
tap_receipt = { version = "1.1.1", path = "tap_receipt" }
4953
thegraph-core = "0.15.0"
5054
thiserror = "2.0.12"
5155
tokio = { version = "1.44.2", features = ["macros", "signal"] }
5256
tonic = { version = "0.13.0", features = ["transport", "zstd"] }
57+
tonic-build = "0.13.0"
5358
tower = { version = "0.5.2", features = ["util", "steer"] }
5459
tracing-subscriber = "0.3.19"

tap_aggregator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ rdkafka.workspace = true
2727
serde.workspace = true
2828
serde_json.workspace = true
2929
strum.workspace = true
30-
tap_core = { path = "../tap_core", version = "4.1.1" }
31-
tap_graph = { version = "0.3.1", path = "../tap_graph", features = ["v2"] }
30+
tap_core.workspace = true
31+
tap_graph.workspace = true
3232
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
3333
tokio.workspace = true
3434
tonic.workspace = true
3535
tower.workspace = true
3636
tracing-subscriber.workspace = true
3737

3838
[build-dependencies]
39-
tonic-build = "0.13.0"
39+
tonic-build.workspace = true
4040

4141
[dev-dependencies]
4242
rand.workspace = true

tap_core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ description = "Core Timeline Aggregation Protocol library: a fast, efficient and
1111
anyhow.workspace = true
1212
async-trait.workspace = true
1313
rand.workspace = true
14-
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
15-
tap_graph = { version = "0.3.1", path = "../tap_graph", optional = true }
16-
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
14+
tap_eip712_message.workspace = true
15+
tap_graph = { workspace = true, optional = true }
16+
tap_receipt.workspace = true
1717
thegraph-core.workspace = true
1818
thiserror.workspace = true
1919
tokio.workspace = true

tap_graph/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ description = "The Graph TAP receipt structs"
99
[dependencies]
1010
rand.workspace = true
1111
serde.workspace = true
12-
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
13-
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
12+
tap_eip712_message.workspace = true
13+
tap_receipt.workspace = true
1414
thegraph-core.workspace = true
1515

1616

tap_integration_tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ description = "Integration tests for the Timeline Aggregation Protocol."
99
publish = false
1010

1111
[dependencies]
12-
tap_aggregator = { path = "../tap_aggregator" }
13-
tap_core = { path = "../tap_core", version = "4.1.1" }
14-
tap_graph = { path = "../tap_graph" }
12+
tap_aggregator.workspace = true
13+
tap_core.workspace = true
14+
tap_graph.workspace = true
1515

1616
anyhow.workspace = true
1717
jsonrpsee = { workspace = true, features = ["jsonrpsee-http-client"] }

tap_receipt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ anyhow.workspace = true
1111
anymap3.workspace = true
1212
async-trait.workspace = true
1313
serde.workspace = true
14-
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
14+
tap_eip712_message.workspace = true
1515
thegraph-core.workspace = true
1616
thiserror.workspace = true
1717

0 commit comments

Comments
 (0)