From 5d73e3b47c5cbff4fa0c88e71f15f48f3831f199 Mon Sep 17 00:00:00 2001 From: Diana Carvalho Date: Thu, 25 Sep 2025 10:48:04 +0100 Subject: [PATCH] feat: Use tycho-common from github Took 20 seconds --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a1bd2b..17bf57c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4635,8 +4635,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tycho-common" version = "0.88.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da3d11794b59200b15d07afdb29323b99db66e757966aa0b71af885a36bbf178" +source = "git+https://github.com/propeller-heads/tycho-indexer.git?tag=0.88.0#47ed2e3db5e6b038866c682964ca0112c27d9ae1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index a4b88fd..1a27f56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ tokio = { version = "1.38.0", features = ["full"] } chrono = "0.4.39" clap = { version = "4.5.3", features = ["derive"] } once_cell = "1.20.2" -tycho-common = "0.88.0" +tycho-common = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-common", tag = "0.88.0" } alloy = { version = "1.0.6", features = ["providers", "rpc-types-eth", "eip712", "signer-local", "node-bindings"], optional = true } async-trait = { version = "0.1.88", optional = true }