Skip to content

Commit 5536db6

Browse files
committed
chore: bump MSRV to 1.85.0
1 parent ac547ce commit 5536db6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
matrix:
1616
rust:
1717
- version: stable
18-
- version: 1.63.0
18+
- version: 1.85.0
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Install Rust
2222
uses: dtolnay/rust-toolchain@v1
2323
with:
2424
toolchain: ${{ matrix.rust.version }}
2525
- name: Pin dependencies for MSRV
26-
if: matrix.rust.version == '1.63.0'
26+
if: matrix.rust.version == '1.85.0'
2727
run: ./ci/pin-msrv.sh
2828
- name: Test
2929
run: cargo test --no-fail-fast --all-features

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "bdk_tx"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.63"
5+
rust-version = "1.85.0"
66
homepage = "https://bitcoindevkit.org"
77
repository = "https://github.com/bitcoindevkit/bdk-tx"
88
documentation = "https://docs.rs/bdk_tx"

ci/pin-msrv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -euo pipefail
99

1010
# rm -f Cargo.lock
1111

12-
# rustup default 1.63.0
12+
# rustup default 1.65.0
1313

1414
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
1515
cargo update -p time --precise "0.3.20"

0 commit comments

Comments
 (0)