From 3e7bbba51cf57205b50cd2e59609335f559f4d71 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Wed, 24 Apr 2024 11:06:21 -0700 Subject: [PATCH] Add doc --- .github/workflows/ci.yml | 5 +++-- proxy/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 590a493..6c054d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,8 +40,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # Minumum Supported Rust Version (MSRV) is 1.56.1. - toolchain: [1.56.1, stable, beta, nightly] + # Minumum Supported Rust Version (MSRV) is 1.56.1 but + # having some weird issues with the memchr dependency. + toolchain: [stable, beta, nightly] steps: - uses: actions/checkout@v3 - name: Update Toolchain diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 3d48d2b..a5c9100 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -9,8 +9,8 @@ readme = "README.md" rust-version = "1.56.1" [dependencies] -bitcoin = "0.31.2" -tokio = { version = "1.36.0", features = ["full"] } +bitcoin = { version = "0.31.2", default-features = false, features = ["no-std"] } +tokio = { version = "1.37.0", features = ["full"] } bytes = "1.6.0" hex = { package = "hex-conservative", version = "0.2.0" } bip324 = { path = "../protocol", version = "0.2.0" }