diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b38fa14e..f56b9c97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,8 +51,6 @@ jobs: run: rustup set profile minimal && rustup component add clippy - name: Build run: cargo build ${{ matrix.build-args }} - - name: Tests - run: cargo test ${{ matrix.build-args }} - name: Clippy run: cargo clippy ${{ matrix.build-args }} -- -D warnings diff --git a/crates/cashu-sdk/src/lib.rs b/crates/cashu-sdk/src/lib.rs index 432c8caa..63b215b3 100644 --- a/crates/cashu-sdk/src/lib.rs +++ b/crates/cashu-sdk/src/lib.rs @@ -16,9 +16,6 @@ pub mod wallet; pub use cashu::{self, *}; -#[cfg(all(feature = "blocking", feature = "wallet"))] -use self::client::blocking; - #[cfg(feature = "blocking")] static RUNTIME: Lazy = Lazy::new(|| Runtime::new().expect("Can't start Tokio runtime"));