Skip to content

Commit

Permalink
Add doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nyonson committed Apr 24, 2024
1 parent 832d54b commit 3e7bbba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

0 comments on commit 3e7bbba

Please sign in to comment.