From 32b3af26b1fcbec3f084a598bdfa1a2a2628711f Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Fri, 24 May 2024 16:38:22 +0200 Subject: [PATCH] ci: bump MSRV --- .github/workflows/build.yml | 2 +- Cargo.lock | 5 +++-- Cargo.toml | 2 +- MANIFEST.yml | 2 +- rust/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6950735..a1c97ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,7 +73,7 @@ jobs: strategy: fail-fast: false matrix: - toolchain: [ nightly, beta, stable, 1.69.0 ] + toolchain: [ nightly, beta, stable, 1.70.0 ] steps: - uses: actions/checkout@v2 - name: Install rust ${{ matrix.toolchain }} diff --git a/Cargo.lock b/Cargo.lock index fd1ffc4..38f70e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,10 +199,11 @@ dependencies = [ [[package]] name = "half" -version = "2.2.1" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" +checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" dependencies = [ + "cfg-if", "crunchy", ] diff --git a/Cargo.toml b/Cargo.toml index 4c866f7..c9ff2df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ resolver = "2" authors = ["Dr Maxim Orlovsky "] homepage = "https://strict-types.org" repository = "https://github.com/strict-types/strict-encoding" -rust-version = "1.69.0" # Due to amplify crate +rust-version = "1.70.0" # Due to amplify crate edition = "2021" license = "Apache-2.0" diff --git a/MANIFEST.yml b/MANIFEST.yml index 522e8c1..1303676 100644 --- a/MANIFEST.yml +++ b/MANIFEST.yml @@ -3,7 +3,7 @@ Type: Library Kind: Free software License: Apache-2.0 Language: Rust -Compiler: 1.69 +Compiler: 1.70 Author: Maxim Orlovsky Maintained: UBIDECO Institute, Switzerland Maintainers: diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 742ad7e..fd6de27 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["derive", "test_helpers"] [dependencies] amplify = { workspace = true, features = ["proc_attr"] } strict_encoding_derive = { version = "2.7.0-beta.3", path = "derive" } -half = { version = "~2.2.0", optional = true } # Required to maintain MSRV +half = { version = "2.4.1", optional = true } serde_crate = { workspace = true, optional = true } [dev-dependencies]