From b8ec9aaf337e12fd5d1c1ab29fe6e1cc98a3396a Mon Sep 17 00:00:00 2001 From: Joseph Livesey Date: Tue, 15 Oct 2024 15:11:06 -0400 Subject: [PATCH] build(firehose-client): add futures and async-stream as dependencies --- Cargo.lock | 2 ++ Cargo.toml | 2 ++ crates/firehose-client/Cargo.toml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 52522dda..3bec190a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2150,7 +2150,9 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" name = "firehose-client" version = "0.1.0" dependencies = [ + "async-stream", "dotenvy", + "futures", "hex", "http 1.1.0", "insta", diff --git a/Cargo.toml b/Cargo.toml index a50e8bae..9c88597b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,10 @@ resolver = "2" [workspace.dependencies] alloy-primitives = "=0.7.7" +async-stream = "0.3.6" dotenvy = "0.15.7" ethportal-api = { git = "https://github.com/ethereum/trin.git", version = "0.2.2", tag = "v0.1.0-alpha.35" } +futures = "0.3.31" hex = "0.4.3" http = "1.1.0" insta = "1.39.0" diff --git a/crates/firehose-client/Cargo.toml b/crates/firehose-client/Cargo.toml index d47fce5b..d5264866 100644 --- a/crates/firehose-client/Cargo.toml +++ b/crates/firehose-client/Cargo.toml @@ -11,7 +11,9 @@ path = "src/lib.rs" [dependencies] sf-protos = { path = "../sf-protos" } +async-stream.workspace = true dotenvy.workspace = true +futures.workspace = true http.workspace = true once_cell.workspace = true rustls.workspace = true