From 342809c8308b0816f1584f63017ae4d28bc380e4 Mon Sep 17 00:00:00 2001 From: Pravdyvy Date: Fri, 16 Jan 2026 16:19:59 +0200 Subject: [PATCH] fix: machete fix for indexer --- Cargo.lock | 16 ---------------- indexer/Cargo.toml | 16 ---------------- 2 files changed, 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e2392385..ebd947ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2869,29 +2869,13 @@ name = "indexer" version = "0.1.0" dependencies = [ "anyhow", - "async-stream", - "base58", - "base64", "bedrock_client", "borsh", - "bytemuck", - "clap", "common", - "env_logger", "futures", - "hex", - "indicatif", - "itertools 0.14.0", - "key_protocol", "log", "nomos-core", - "nssa", - "nssa_core", - "rand 0.8.5", - "risc0-zkvm", "serde", - "serde_json", - "sha2", "tokio", "tokio-retry", "url", diff --git a/indexer/Cargo.toml b/indexer/Cargo.toml index b3ad6f3d..fd8f7382 100644 --- a/indexer/Cargo.toml +++ b/indexer/Cargo.toml @@ -4,31 +4,15 @@ version = "0.1.0" edition = "2024" [dependencies] -nssa_core.workspace = true -nssa.workspace = true common.workspace = true bedrock_client.workspace = true -key_protocol.workspace = true anyhow.workspace = true -serde_json.workspace = true -env_logger.workspace = true log.workspace = true serde.workspace = true tokio.workspace = true -clap.workspace = true -base64.workspace = true -bytemuck.workspace = true borsh.workspace = true -base58.workspace = true -hex.workspace = true -rand.workspace = true -itertools.workspace = true -sha2.workspace = true futures.workspace = true -async-stream = "0.3.6" -indicatif = { version = "0.18.3", features = ["improved_unicode"] } -risc0-zkvm.workspace = true url.workspace = true nomos-core.workspace = true tokio-retry.workspace = true