Skip to content

Commit e0dcc08

Browse files
mangasgusinacio
authored andcommitted
chore: Bump alloy
1 parent b27ae9c commit e0dcc08

15 files changed

+1044
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ indexer.toml
1010
# IDE files
1111
.vscode/
1212
# migrations/
13+
.helix

.sqlx/query-05cd59d0d9e64a7c6f7d4560a97e6b79fd38523fbcef88b2dd169720b4e9188e.json

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

.sqlx/query-181c9a792289c614082c63d9404ca0a67ae24ca43aead3972f3d77e54638ecb1.json

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

.sqlx/query-78fbff2889a77201ec01cd18fc83d4e7e63037d56e86bd7c462c8f8adc0cfac8.json

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

Cargo.toml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
[workspace]
2-
members = ["common", "config", "service", "tap-agent"]
2+
members = ["common", "config", "dips", "service", "tap-agent"]
33
resolver = "2"
44

55
[profile.dev.package."*"]
66
opt-level = 3
77

88
[workspace.dependencies]
9-
alloy = { version = "0.2.1", features = [
9+
alloy = { version = "=0.5.4", features = [
1010
"kzg",
1111
"signer-mnemonic",
12+
"dyn-abi",
13+
"sol-types",
14+
"signer-local",
15+
"eip712",
16+
"rlp",
17+
"signers",
1218
], default-features = false }
1319
clap = "4.4.3"
1420
lazy_static = "1.4.0"
15-
axum = { version = "0.7.5", default-features = false }
16-
tokio = "1.39.2"
21+
axum = { version = "0.7.7", default-features = false }
22+
tokio = "1.40"
1723
prometheus = "0.13.3"
1824
anyhow = { version = "1.0.72" }
1925
thiserror = "1.0.49"
2026
async-trait = "0.1.72"
2127
eventuals = "0.6.7"
28+
base64 = "0.22.1"
2229
reqwest = { version = "0.12", features = [
2330
"charset",
2431
"h2",
@@ -34,17 +41,20 @@ sqlx = { version = "0.8.2", features = [
3441
"postgres",
3542
"runtime-tokio",
3643
"rust_decimal",
44+
"uuid",
3745
], default-features = false }
46+
uuid = { version = "1.11.0", features = ["v7"] }
3847
tracing = { version = "0.1.40", default-features = false }
3948
bigdecimal = "0.4.3"
4049
build-info = "0.0.39"
41-
tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "3fe6bc2", default-features = false }
50+
tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "61b47b3", default-features = false }
51+
tap_aggregator = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", rev = "61b47b3", default-features = false }
4252
tracing-subscriber = { version = "0.3", features = [
4353
"json",
4454
"env-filter",
4555
"ansi",
4656
], default-features = false }
47-
thegraph-core = { git = "https://github.com/edgeandnode/toolshed", rev = "85ee00b", features = [
57+
thegraph-core = { git = "https://github.com/edgeandnode/toolshed", rev = "1663534fc1738e2db1b11cb54b5bb478ee970d40", features = [
4858
"subgraph-client",
4959
] }
5060
thegraph-graphql-http = "0.2.0"

dips/Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "indexer-dips"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
alloy.workspace = true
8+
thiserror.workspace = true
9+
anyhow.workspace = true
10+
alloy-sol-types = "=0.8.10"
11+
alloy-rlp = "0.3.9"
12+
thegraph-core.workspace = true

0 commit comments

Comments
 (0)