Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit fd860bb

Browse files
authored
Merge pull request #17 from tcharding/08-08-bump-msrv
Bump msrv
2 parents c940374 + 4d0b490 commit fd860bb

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

.github/workflows/rust.yaml

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

7272
MSRV: # 2 jobs, one per lock file.
73-
name: Test - 1.56.1 toolchain
73+
name: Test - 1.63.0 toolchain
7474
runs-on: ubuntu-latest
7575
strategy:
7676
fail-fast: false
@@ -87,7 +87,7 @@ jobs:
8787
- name: "Select toolchain"
8888
uses: dtolnay/rust-toolchain@stable
8989
with:
90-
toolchain: "1.56.1"
90+
toolchain: "1.63.0"
9191
- name: "Set dependencies"
9292
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
9393
- name: "Run test script"

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,10 @@ from `rust-bitcoincore-rpc` was just shamelessy stolen. As such I have maintaine
2929
author's list and added my own name for accountability. All bugs are my own (tcharding).
3030

3131
- [rust-bitcoincore-rpcv0.19.0](https://github.com/rust-bitcoin/rust-bitcoincore-rpc)
32-
- [`bitcoind`](https://crates.io/crates/bitcoind)
32+
- [`bitcoind`](https://crates.io/crates/bitcoind)
33+
34+
## Minimum Supported Rust Version (MSRV)
35+
36+
This library should always compile with any combination of features on **Rust 1.63.0**.
37+
38+
Use `Cargo-minimal.lock` to build the MSRV by copying to `Cargo.lock` and building.

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["cryptography::cryptocurrencies"]
1414
keywords = ["bitcoin", "bitcoind", "json-rpc"]
1515
readme = "README.md"
1616
edition = "2021"
17-
rust-version = "1.56.1"
17+
rust-version = "1.63.0"
1818
exclude = ["tests", "contrib"]
1919

2020
[package.metadata.docs.rs]

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
msrv = "1.56.1"
1+
msrv = "1.63.0"
22
too-many-arguments-threshold = 13

json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["cryptography::cryptocurrencies"]
1414
keywords = ["bitcoin", "bitcoind", "json-rpc"]
1515
readme = "README.md"
1616
edition = "2021"
17-
rust-version = "1.56.1"
17+
rust-version = "1.63.0"
1818
exclude = ["tests", "contrib"]
1919

2020
[features]

regtest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
99
keywords = ["bitcoin", "bitcoind", "json-rpc"]
1010
readme = "README.md"
1111
edition = "2021"
12-
rust-version = "1.56.1"
12+
rust-version = "1.63.0"
1313
exclude = ["tests", "contrib"]
1414

1515
[dependencies]

regtest/clippy.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)