Skip to content

Commit 8e6c621

Browse files
Update criterion to 0.4, Bump MSRV, switch CI to macos-12 (#175)
* Update criterion requirement from 0.3 to 0.4 Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Release notes](https://github.com/bheisler/criterion.rs/releases) - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.3.0...0.4.0) --- updated-dependencies: - dependency-name: criterion dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump MSRV to 1.57.0, update changelog * Use macos-12 in CI * Update CHANGELOG.md Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Craig Colegrove <craig.colegrove@ironcorelabs.com> Co-authored-by: Craig Colegrove <34786857+giarc3@users.noreply.github.com>
1 parent 91450be commit 8e6c621

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ jobs:
4343
- os: ubuntu-22.04
4444
target: wasm32-unknown-unknown
4545
features: --features wasm --no-default-features
46-
- os: macos-10.15
46+
- os: macos-12
4747
target: aarch64-apple-ios
48-
- os: macos-10.15
48+
- os: macos-12
4949
target: x86_64-apple-darwin # 64-bit OSX
50-
- os: macos-11
50+
- os: macos-12
5151
target: aarch64-apple-darwin # 64-bit M1 OSX
5252
- os: windows-2019
5353
target: x86_64-pc-windows-msvc
@@ -75,7 +75,7 @@ jobs:
7575
rust:
7676
- stable
7777
- beta
78-
- 1.56 #MSRV
78+
- 1.57 #MSRV
7979
fail-fast: false
8080
steps:
8181
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Unreleased
4+
- [[#175](https://github.com/IronCoreLabs/recrypt-rs/pull/175)]
5+
- Change MSRV to Rust 1.57.0
6+
37
## 0.13.1 (2021-11-29)
48

59
### Public API changes

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["cryptography", "algorithms"]
1010
keywords = ["cryptography", "proxy-re-encryption", "PRE", "ECC", "transform-encryption"]
1111
description = "A pure-Rust implementation of Transform Encryption, a Proxy Re-encryption scheme"
1212
edition = "2021"
13-
rust-version = "1.56.0"
13+
rust-version = "1.57.0"
1414

1515
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]
1616
libc = {version = "0.2"}
@@ -37,7 +37,7 @@ rand_chacha = "0.3"
3737
sha2 = "0.10"
3838

3939
[dev-dependencies]
40-
criterion = "0.3"
40+
criterion = "0.4"
4141
proptest = "1"
4242
serde_json = "1"
4343

0 commit comments

Comments
 (0)