Skip to content

Commit

Permalink
Avoid pinning dependencies, use --precise in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
danielabrozzoni committed Jul 24, 2023
1 parent cb626e9 commit 2f9b7c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
profile: minimal
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Pin dependencies
if: matrix.version == "1.57.0"
run: cargo update -p log --precise "0.4.18" && cargo update -p tempfile --precise "3.6.0"
- name: Build
run: cargo build ${{ matrix.features }}
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion crates/bdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.57"

[dependencies]
log = "=0.4.18"
log = "^0.4"
rand = "^0.8"
miniscript = { version = "9", features = ["serde"], default-features = false }
bitcoin = { version = "0.29", features = ["serde", "base64", "rand"], default-features = false }
Expand Down

0 comments on commit 2f9b7c5

Please sign in to comment.