Skip to content

Commit ad446c2

Browse files
committed
Update MSRV to 1.56.1
Following `rust-bitcoin` MSRV of 1.56.1, this pins MSRV to 1.56.1. Quoting @tcharding in rust-bitcoin/rust-bitcoin@d9cc724 > Rust version 1.56.0 introduced edition 2021. Shortly afterwards, on > October 21 2021 Rust version 1.56.1 was released. > Debian stable is currently shipping `rustc 1.63.0`. > Our stated MSRV policy is: In Debian stable and at least 2 years old. > Therefore our MSRV policy is met by Rust version 1.56.1 and we can strat > to bump our MSRV org wide. > Links: > - https://blog.rust-lang.org/2021/11/01/Rust-1.56.1.html > - https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html > - https://packages.debian.org/stable/rust/rustc
1 parent 469c113 commit ad446c2

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- rust: stable
5555
- rust: beta
5656
- rust: nightly
57-
- rust: 1.48
57+
- rust: "1.56.1"
5858
steps:
5959
- name: Checkout Crate
6060
uses: actions/checkout@v2

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Build](https://github.com/rust-bitcoin/rust-miniscript/workflows/Continuous%20integration/badge.svg)
22

3-
**Minimum Supported Rust Version:** 1.48.0
3+
**Minimum Supported Rust Version:** 1.56.1
44

55
# Miniscript
66

@@ -40,7 +40,8 @@ The cargo feature `std` is enabled by default. At least one of the features `std
4040
Enabling the `no-std` feature does not disable `std`. To disable the `std` feature you must disable default features. The `no-std` feature only enables additional features required for this crate to be usable without `std`. Both can be enabled without conflict.
4141

4242
## Minimum Supported Rust Version (MSRV)
43-
This library should always compile with any combination of features on **Rust 1.48.0**.
43+
44+
This library should always compile with any combination of features on **Rust 1.56.1**.
4445

4546
Some dependencies do not play nicely with our MSRV, if you are running the tests
4647
you may need to pin some dependencies. See `./contrib/test.sh` for current pinning.

clippy.toml

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

contrib/test.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ then
2020
cargo fmt -- --check
2121
fi
2222

23-
# Pin dependencies required to build with Rust 1.48.0
24-
if cargo --version | grep "1\.48\.0"; then
23+
# Pin dependencies required to build with Rust 1.56.1
24+
if cargo --version | grep "1\.56\.1"; then
2525
cargo update -p once_cell --precise 1.13.1
26-
cargo update -p quote --precise 1.0.28
27-
cargo update -p syn --precise 2.0.32
28-
cargo update -p proc-macro2 --precise 1.0.63
26+
cargo update -p quote --precise 1.0.35
27+
cargo update -p syn --precise 2.0.46
28+
cargo update -p proc-macro2 --precise 1.0.74
2929
cargo update -p serde_json --precise 1.0.99
3030
cargo update -p serde --precise 1.0.152
3131
cargo update -p log --precise 0.4.18

0 commit comments

Comments
 (0)