Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
run: ./maintainer-tools/ci/run_task.sh nightly

MSRV: # 2 jobs, one per lock file.
name: Test - 1.63.0 toolchain
name: Test - 1.75.0 toolchain
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -87,7 +87,7 @@ jobs:
- name: "Select toolchain"
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.63.0"
toolchain: "1.75.0"
- name: "Set dependencies"
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
- name: "Run test script"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ Some code shamelessly stolen from `rust-bitcoincore-rpc` (credit to Steven).

## Minimum Supported Rust Version (MSRV)

This library should always compile with any combination of features on **Rust 1.63.0**.
This library should always compile with any combination of features on **Rust 1.75.0**.

Use `Cargo-minimal.lock` to build the MSRV by copying to `Cargo.lock` and building.
2 changes: 1 addition & 1 deletion bitreq/.github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Checkout Toolchain
uses: dtolnay/rust-toolchain@1.63
uses: dtolnay/rust-toolchain@1.75
- name: Running test script
run: |
cargo test
2 changes: 1 addition & 1 deletion bitreq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["http", "https", "client", "request", "json"]
categories = ["web-programming::http-client"]
license = "ISC"
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.75.0"

[badges]
maintenance = { status = "experimental" }
Expand Down
2 changes: 1 addition & 1 deletion bitreq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ We use an MSRV per major release, i.e., with a new major release we
reserve the right to change the MSRV.

The current major version of this library should always compile with
default features (i.e., `std`) on **Rust 1.63**. Other features may
default features (i.e., `std`) on **Rust 1.75**. Other features may
require a higher MSRV.

## License
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["cryptography::cryptocurrencies"]
keywords = ["bitcoin", "bitcoind", "json-rpc"]
readme = "README.md"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
exclude = ["tests", "contrib"]

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ is only a blocking client and is intended to be used in integration testing.

## Minimum Supported Rust Version (MSRV)

This library should always compile with any combination of features on **Rust 1.63.0**.
This library should always compile with any combination of features on **Rust 1.75.0**.

## Licensing

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
msrv = "1.63.0"
msrv = "1.75.0"
too-many-arguments-threshold = 13
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "jsonrpc-fuzz"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
version = "0.0.1"
authors = ["Generated by fuzz/generate-files.sh"]
publish = false
Expand Down
2 changes: 1 addition & 1 deletion fuzz/generate-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cat > "$REPO_DIR/fuzz/Cargo.toml" <<EOF
[package]
name = "jsonrpc-fuzz"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
version = "0.0.1"
authors = ["Generated by fuzz/generate-files.sh"]
publish = false
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Rust support for the JSON-RPC 2.0 protocol"
keywords = [ "protocol", "json", "http", "jsonrpc" ]
readme = "README.md"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
exclude = ["tests", "contrib"]

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Rust Version compatibility

This library is compatible with Rust **1.63.0** or higher.
This library is compatible with Rust **1.75.0** or higher.

# Rust JSONRPC Client

Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
keywords = ["bitcoin", "bitcoind", "json-rpc"]
readme = "README.md"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
exclude = ["tests", "contrib"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --features download,doc --open

## Minimum Supported Rust Version (MSRV)

This library should always compile with any combination of features on **Rust 1.63.0**.
This library should always compile with any combination of features on **Rust 1.75.0**.

## Nix

Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["cryptography::cryptocurrencies"]
keywords = ["bitcoin", "bitcoind", "json-rpc"]
readme = "README.md"
edition = "2021"
rust-version = "1.63.0"
rust-version = "1.75.0"
exclude = ["tests", "contrib"]

[features]
Expand Down
2 changes: 1 addition & 1 deletion types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ testing in the wild.

## Minimum Supported Rust Version (MSRV)

This library should always compile with any combination of features on **Rust 1.63.0**.
This library should always compile with any combination of features on **Rust 1.75.0**.

## Licensing

Expand Down