Skip to content

Commit 77e9588

Browse files
committed
refactor: sort dependencies
Signed-off-by: Joseph Livesey <[email protected]>
1 parent bdbf47e commit 77e9588

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"tap_core",
54
"tap_aggregator",
6-
"tap_integration_tests",
7-
"tap_graph",
5+
"tap_core",
86
"tap_eip712_message",
7+
"tap_graph",
8+
"tap_integration_tests",
99
"tap_receipt",
1010
]
1111

@@ -38,6 +38,7 @@ lazy_static = "1.5.0"
3838
log = "0.4.27"
3939
prometheus = "0.14.0"
4040
prost = "0.13.5"
41+
rand = "0.9.1"
4142
rayon = "1.10.0"
4243
rdkafka = { version = "0.37.0", features = ["tokio", "sasl"] }
4344
serde = { version = "1.0.219", features = ["derive"] }
@@ -51,4 +52,3 @@ tokio = { version = "1.44.2", features = ["macros", "signal"] }
5152
tonic = { version = "0.12.3", features = ["transport", "zstd"] }
5253
tower = { version = "0.5.2", features = ["util", "steer"] }
5354
tracing-subscriber = "0.3.19"
54-
rand = "0.9.1"

tap_aggregator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ log.workspace = true
2323
prometheus.workspace = true
2424
prost.workspace = true
2525
rayon.workspace = true
26+
rdkafka.workspace = true
2627
serde.workspace = true
2728
serde_json.workspace = true
2829
strum.workspace = true
2930
tap_core = { path = "../tap_core", version = "4.0.0" }
31+
tap_graph = { version = "0.2.1", path = "../tap_graph", features = ["v2"] }
3032
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
3133
tokio.workspace = true
3234
tonic.workspace = true
3335
tower.workspace = true
3436
tracing-subscriber.workspace = true
35-
tap_graph = { version = "0.2.1", path = "../tap_graph", features = ["v2"] }
36-
rdkafka.workspace = true
3737

3838
[build-dependencies]
3939
tonic-build = "0.12.3"

tap_integration_tests/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ publish = false
1111
[dependencies]
1212
tap_aggregator = { path = "../tap_aggregator" }
1313
tap_core = { path = "../tap_core", version = "4.0.0" }
14-
rand.workspace = true
14+
tap_graph = { path = "../tap_graph" }
15+
1516
anyhow.workspace = true
16-
thegraph-core.workspace = true
17-
tokio.workspace = true
1817
jsonrpsee = { workspace = true, features = ["jsonrpsee-http-client"] }
1918
jsonrpsee-core.workspace = true
20-
tap_graph = { path = "../tap_graph" }
19+
rand.workspace = true
20+
thegraph-core.workspace = true
21+
tokio.workspace = true
2122

2223
[dev-dependencies]
2324
rstest.workspace = true

0 commit comments

Comments
 (0)