Skip to content

Commit 00862f0

Browse files
committed
Bump MSRV to 1.58.0
We have to use rust-simplicity's MSRV, which is 1.58.0: BlockstreamResearch/rust-simplicity@c3b86f5
1 parent 2a3a6b7 commit 00862f0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
72-
rust: [stable, beta, nightly, 1.48.0]
72+
rust: [stable, beta, nightly, 1.58.0]
7373
steps:
7474
- name: Checkout Crate
7575
uses: actions/checkout@v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Build](https://github.com/ElementsProject/elements-miniscript/workflows/Continuous%20integration/badge.svg)
22

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

55
*This crate uses "2018" edition
66

@@ -40,7 +40,7 @@ Enabling the `no-std` feature does not disable `std`. To disable the `std` featu
4040
To run the benchmarks run `RUSTFLAGS=--cfg=miniscript_bench cargo +nightly bench --all-features`.
4141

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

4545

4646
Some dependencies do not play nicely with our MSRV, if you are running the tests

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.48.0"
1+
msrv = "1.58.0"

contrib/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FEATURES="compiler serde rand base64"
77
cargo --version
88
rustc --version
99

10-
# Pin dependencies required to build with Rust 1.48
11-
if cargo --version | grep "1\.48"; then
10+
# Pin dependencies required to build with Rust 1.58
11+
if cargo --version | grep "1\.58"; then
1212
cargo update -p quote --precise 1.0.28
1313
cargo update -p proc-macro2 --precise 1.0.63
1414
cargo update -p serde_json --precise 1.0.99

0 commit comments

Comments
 (0)