Skip to content
Closed
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
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
]

[workspace.package]
version = "0.2.6"
version = "0.2.7"
edition = "2024"
rust-version = "1.90"
license = "BUSL-1.1"
Expand Down
16 changes: 8 additions & 8 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ name = "api"
path = "api.rs"

[dependencies]
indexer-domain = { path = "../crates/domain", version = "0.2.6" }
indexer-db = { path = "../crates/db", version = "0.2.6" }
indexer-chain = { path = "../crates/chain", version = "0.2.6" }
indexer-sync = { path = "../crates/sync", version = "0.2.6" }
indexer-coinblast = { path = "../crates/coinblast", version = "0.2.6" }
indexer-analytics = { path = "../crates/analytics", version = "0.2.6" }
indexer-api = { path = "../crates/api", version = "0.2.6" }
indexer-cache = { path = "../crates/cache", version = "0.2.6" }
indexer-domain = { path = "../crates/domain", version = "0.2.7" }
indexer-db = { path = "../crates/db", version = "0.2.7" }
indexer-chain = { path = "../crates/chain", version = "0.2.7" }
indexer-sync = { path = "../crates/sync", version = "0.2.7" }
indexer-coinblast = { path = "../crates/coinblast", version = "0.2.7" }
indexer-analytics = { path = "../crates/analytics", version = "0.2.7" }
indexer-api = { path = "../crates/api", version = "0.2.7" }
indexer-cache = { path = "../crates/cache", version = "0.2.7" }

clickhouse.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/analytics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }

clickhouse.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-db = { path = "../db", version = "0.2.6" }
indexer-cache = { path = "../cache", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }
indexer-db = { path = "../db", version = "0.2.7" }
indexer-cache = { path = "../cache", version = "0.2.7" }

# Prometheus metrics export.
metrics.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }

# alloy: EVM JSON-RPC client.
alloy-primitives.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/coinblast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-db = { path = "../db", version = "0.2.6" }
indexer-chain = { path = "../chain", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }
indexer-db = { path = "../db", version = "0.2.7" }
indexer-chain = { path = "../chain", version = "0.2.7" }

# alloy: log filtering + ABI event decode via sol! macro.
alloy-primitives.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }
sqlx = { workspace = true }
tokio.workspace = true
serde_json.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repository.workspace = true
authors.workspace = true

[dependencies]
indexer-domain = { path = "../domain", version = "0.2.6" }
indexer-db = { path = "../db", version = "0.2.6" }
indexer-chain = { path = "../chain", version = "0.2.6" }
indexer-analytics = { path = "../analytics", version = "0.2.6" }
indexer-domain = { path = "../domain", version = "0.2.7" }
indexer-db = { path = "../db", version = "0.2.7" }
indexer-chain = { path = "../chain", version = "0.2.7" }
indexer-analytics = { path = "../analytics", version = "0.2.7" }

# alloy types we re-shape into our domain types.
alloy-primitives.workspace = true
Expand Down
Loading