From 194cbcdd1394670a8dbe92e662fd6a9b50ed89d8 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Mon, 8 Jan 2024 17:58:07 +0100 Subject: [PATCH] core: bump MSRV to 1.63.0 --- .github/workflows/ci.yml | 3 +-- keechain-core/Cargo.toml | 2 +- keechain-core/README.md | 4 ---- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0173c18..63d9add 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: matrix: rust: - version: stable # Stable - - version: 1.60.0 # MSRV + - version: 1.63.0 # MSRV build-args: [ "-p keechain-core --no-default-features", @@ -61,7 +61,6 @@ jobs: matrix: rust: - version: stable # Stable - # - version: 1.65.0 # MSRV build-args: [ "-p keechain-ffi", diff --git a/keechain-core/Cargo.toml b/keechain-core/Cargo.toml index 2386c73..5d9f366 100644 --- a/keechain-core/Cargo.toml +++ b/keechain-core/Cargo.toml @@ -8,7 +8,7 @@ homepage = "https://github.com/yukibtc/keechain" repository = "https://github.com/yukibtc/keechain.git" license = "MIT" keywords = ["bitcoin", "signer", "psbt", "offline"] -rust-version = "1.60.0" +rust-version = "1.63.0" [features] default = ["sysinfo"] diff --git a/keechain-core/README.md b/keechain-core/README.md index e39c6f7..02a1dda 100644 --- a/keechain-core/README.md +++ b/keechain-core/README.md @@ -4,10 +4,6 @@ KeeChain Core library. -## Minimum Supported Rust Version (MSRV) - -These crates are built with the Rust language version `2021` and require a minimum compiler version of `1.60.0` - ## State **This library is in an ALPHA state**, things that are implemented generally work but the API will change in breaking ways.