Skip to content

Commit e6f136c

Browse files
committed
refactor: import via workspace for better manageability
1 parent 58820e3 commit e6f136c

File tree

13 files changed

+104
-133
lines changed

13 files changed

+104
-133
lines changed

Cargo.lock

Lines changed: 32 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,34 @@ bigdecimal = "0.4.3"
3131
bip39 = "2.0.0"
3232
bon = "3.3"
3333
build-info = "0.0.40"
34+
build-info-build = { version = "0.0.40", default-features = false }
3435
clap = "4.4.3"
36+
educe = "0.6.0"
37+
env_logger = { version = "0.11.0", default-features = false }
3538
eventuals = "0.6.7"
39+
futures = "0.3"
40+
futures-util = { version = "0.3.28", default-features = false }
3641
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
3742
graph-networks-registry = "0.6.1"
43+
hex-literal = "0.4.1"
44+
insta = "1.42.2"
45+
itertools = "0.14.0"
46+
jsonrpsee = { version = "0.24.0", features = ["http-client", "tracing"] }
3847
prometheus = "0.13.3"
3948
prost = "0.13.4"
4049
prost-types = "0.13.3"
50+
ractor = { version = "0.14", features = [
51+
"async-trait",
52+
], default-features = false }
53+
rand = "0.9.0"
4154
reqwest = { version = "0.12", features = [
4255
"charset",
4356
"h2",
4457
], default-features = false }
45-
rstest = "0.23.0"
58+
rstest = "0.24.0"
59+
ruint = { version = "1.12.3", features = [
60+
"num-traits",
61+
], default-features = false }
4662
serde = { version = "1.0.206", default-features = false }
4763
serde_json = "1.0.124"
4864
serde_yaml = "0.9.21"
@@ -57,10 +73,13 @@ sqlx = { version = "0.8.2", features = [
5773
"rust_decimal",
5874
"uuid",
5975
], default-features = false }
76+
stdext = "0.3.3"
6077
tap_aggregator = { version = "0.4.0", default-features = false }
6178
tap_core = { version = "3.0.0", default-features = false }
6279
tap_graph = { version = "0.2.0", features = ["v2"] }
63-
test-log = { version = "0.2.12", features = ["trace"] }
80+
tempfile = "3.8.0"
81+
test-log = { version = "0.2.12", default-features = false }
82+
test-with = "0.14.6"
6483
thegraph-core = { version = "0.11.0", features = [
6584
"attestation",
6685
"alloy-eip712",
@@ -74,8 +93,11 @@ thegraph-core = { version = "0.11.0", features = [
7493
thegraph-graphql-http = { version = "0.3.2", features = ["reqwest"] }
7594
thiserror = "1.0.49"
7695
tokio = "1.40"
96+
tokio-test = "0.4.4"
7797
tonic = { version = "0.12.3", features = ["tls-roots", "gzip"] }
7898
tonic-build = "0.12.3"
99+
tower-service = "0.3.3"
100+
tower-test = "0.4.0"
79101
tracing = { version = "0.1.40", default-features = false }
80102
tracing-subscriber = { version = "0.3", features = [
81103
"json",
@@ -84,6 +106,7 @@ tracing-subscriber = { version = "0.3", features = [
84106
], default-features = false }
85107
uuid = { version = "1.11.0", features = ["v7"] }
86108
wiremock = "0.6.1"
109+
wiremock-grpc = "0.0.3-alpha3"
87110

88111
[patch.crates-io.tap_core]
89112
git = "https://github.com/semiotic-ai/timeline-aggregation-protocol"

crates/allocation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7+
anyhow.workspace = true
78
indexer-query = { path = "../query" }
89
serde = { workspace = true, features = ["derive"] }
910
thegraph-core.workspace = true
10-
anyhow.workspace = true

crates/attestation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7+
anyhow.workspace = true
78
indexer-allocation = { path = "../allocation" }
89
thegraph-core.workspace = true
9-
anyhow.workspace = true
1010

1111

1212
[dev-dependencies]
13-
test-log = { version = "0.2.12", default-features = false }
1413
test-assets = { path = "../test-assets" }
14+
test-log.workspace = true

0 commit comments

Comments
 (0)