From 113a73d9714df51c4149fc869659dfdb21268f63 Mon Sep 17 00:00:00 2001 From: jfldde <168934971+jfldde@users.noreply.github.com> Date: Thu, 3 Oct 2024 14:50:00 +0100 Subject: [PATCH] Remove test gate --- Cargo.toml | 4 ++-- src/lib.rs | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a3b3921..6897360 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" resolver = "2" -[dev-dependencies] +[dependencies] anyhow = { version = "1.0.68", default-features = false, features = ["std"] } async-trait = "0.1.71" bitcoin = { version = "0.32.2", features = ["serde", "rand"] } @@ -21,7 +21,7 @@ toml = "0.8.0" which = "6.0.3" # Eth client dependencies -alloy = { version = "0.2.1", features = ["hyper", "consensus", "rpc-types-eth", "provider-http", "signers", "signer-local"] } +alloy = { version = "0.2.1", features = ["hyper", "rpc-types-eth", "provider-http", "signers", "signer-local"] } jsonrpsee = { version = "0.24.2", features = ["http-client", "ws-client"] } reqwest = { version = "=0.12.5", features = ["rustls-tls", "json", "http2"], default-features = false } reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "a206eb3690e5a51d3c797fed2a6ed722e36863eb", default-features = false } diff --git a/src/lib.rs b/src/lib.rs index 1409b8d..86aaa53 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,3 @@ -#![cfg(test)] - mod bitcoin; pub mod client; pub mod config;