Skip to content

Commit 63f85fe

Browse files
committed
Bump MSRV to Rust 1.63.0
As we have done in `rust-bitcoin` bump the MSVR to Rust 1.63.0
1 parent aec747e commit 63f85fe

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: ./maintainer-tools/ci/run_task.sh nightly
5555

5656
MSRV: # 1 jobs, minimal lock file only.
57-
name: Test - 1.56.1 toolchain
57+
name: Test - 1.63.0 toolchain
5858
runs-on: ubuntu-latest
5959
strategy:
6060
fail-fast: false
@@ -71,7 +71,7 @@ jobs:
7171
- name: "Select toolchain"
7272
uses: dtolnay/rust-toolchain@stable
7373
with:
74-
toolchain: "1.56.1"
74+
toolchain: "1.63.0"
7575
- name: "Set dependencies"
7676
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
7777
- name: "Run test script"

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ repository = "https://github.com/rust-bitcoin/rust-miniscript/"
88
description = "Miniscript: a subset of Bitcoin Script designed for analysis"
99
keywords = [ "crypto", "bitcoin", "miniscript", "script" ]
1010
readme = "README.md"
11-
edition = "2018"
11+
edition = "2021"
12+
rust-version = "1.63.0"
1213

1314
[features]
1415
default = ["std"]

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
msrv = "1.56.1"
1+
msrv = "1.63.0"
22
# plan API returns Self as an error type for an large-ish enum
33
large-error-threshold = 256

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "descriptor-fuzz"
33
edition = "2021"
4-
rust-version = "1.56.1"
4+
rust-version = "1.63.0"
55
version = "0.0.1"
66
authors = ["Generated by fuzz/generate-files.sh"]
77
publish = false

fuzz/generate-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cat > "$REPO_DIR/fuzz/Cargo.toml" <<EOF
1313
[package]
1414
name = "descriptor-fuzz"
1515
edition = "2021"
16-
rust-version = "1.56.1"
16+
rust-version = "1.63.0"
1717
version = "0.0.1"
1818
authors = ["Generated by fuzz/generate-files.sh"]
1919
publish = false

0 commit comments

Comments
 (0)