Skip to content

Commit 6cde6ac

Browse files
authored
Bump elliptic-curve to v0.13.0-rc.0; MSRV 1.65 (#768)
Also bumps `ecdsa` to v0.16.0-rc.0
1 parent 113f463 commit 6cde6ac

File tree

27 files changed

+110
-105
lines changed

27 files changed

+110
-105
lines changed

.github/workflows/bp256.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
matrix:
5353
rust:
54-
- 1.61.0 # MSRV
54+
- 1.65.0 # MSRV
5555
- stable
5656
steps:
5757
- uses: actions/checkout@v3

.github/workflows/bp384.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
matrix:
5353
rust:
54-
- 1.61.0 # MSRV
54+
- 1.65.0 # MSRV
5555
- stable
5656
steps:
5757
- uses: actions/checkout@v3

.github/workflows/k256.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -61,7 +61,7 @@ jobs:
6161
strategy:
6262
matrix:
6363
rust:
64-
- 1.61.0 # MSRV
64+
- 1.65.0 # MSRV
6565
- stable
6666
steps:
6767
- uses: actions/checkout@v3
@@ -79,15 +79,15 @@ jobs:
7979
include:
8080
# 32-bit Linux
8181
- target: i686-unknown-linux-gnu
82-
rust: 1.61.0 # MSRV
82+
rust: 1.65.0 # MSRV
8383
deps: sudo apt update && sudo apt install gcc-multilib
8484
- target: i686-unknown-linux-gnu
8585
rust: stable
8686
deps: sudo apt update && sudo apt install gcc-multilib
8787

8888
# 64-bit Linux
8989
- target: x86_64-unknown-linux-gnu
90-
rust: 1.61.0 # MSRV
90+
rust: 1.65.0 # MSRV
9191
- target: x86_64-unknown-linux-gnu
9292
rust: stable
9393

@@ -111,19 +111,19 @@ jobs:
111111
include:
112112
# ARM32
113113
- target: armv7-unknown-linux-gnueabihf
114-
rust: 1.61.0 # MSRV (cross)
114+
rust: 1.65.0 # MSRV (cross)
115115
- target: armv7-unknown-linux-gnueabihf
116116
rust: stable
117117

118118
# ARM64
119119
- target: aarch64-unknown-linux-gnu
120-
rust: 1.61.0 # MSRV (cross)
120+
rust: 1.65.0 # MSRV (cross)
121121
- target: aarch64-unknown-linux-gnu
122122
rust: stable
123123

124124
# PPC32
125125
- target: powerpc-unknown-linux-gnu
126-
rust: 1.61.0 # MSRV (cross)
126+
rust: 1.65.0 # MSRV (cross)
127127
- target: powerpc-unknown-linux-gnu
128128
rust: stable
129129

.github/workflows/p224.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -50,15 +50,15 @@ jobs:
5050
include:
5151
# 32-bit Linux
5252
- target: i686-unknown-linux-gnu
53-
rust: 1.61.0 # MSRV
53+
rust: 1.65.0 # MSRV
5454
deps: sudo apt update && sudo apt install gcc-multilib
5555
- target: i686-unknown-linux-gnu
5656
rust: stable
5757
deps: sudo apt update && sudo apt install gcc-multilib
5858

5959
# 64-bit Linux
6060
- target: x86_64-unknown-linux-gnu
61-
rust: 1.61.0 # MSRV
61+
rust: 1.65.0 # MSRV
6262
- target: x86_64-unknown-linux-gnu
6363
rust: stable
6464

.github/workflows/p256.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -60,15 +60,15 @@ jobs:
6060
include:
6161
# 32-bit Linux
6262
- target: i686-unknown-linux-gnu
63-
rust: 1.61.0 # MSRV
63+
rust: 1.65.0 # MSRV
6464
deps: sudo apt update && sudo apt install gcc-multilib
6565
- target: i686-unknown-linux-gnu
6666
rust: stable
6767
deps: sudo apt update && sudo apt install gcc-multilib
6868

6969
# 64-bit Linux
7070
- target: x86_64-unknown-linux-gnu
71-
rust: 1.61.0 # MSRV
71+
rust: 1.65.0 # MSRV
7272
- target: x86_64-unknown-linux-gnu
7373
rust: stable
7474

@@ -92,19 +92,19 @@ jobs:
9292
include:
9393
# ARM32
9494
- target: armv7-unknown-linux-gnueabihf
95-
rust: 1.61.0 # MSRV (cross)
95+
rust: 1.65.0 # MSRV (cross)
9696
- target: armv7-unknown-linux-gnueabihf
9797
rust: stable
9898

9999
# ARM64
100100
- target: aarch64-unknown-linux-gnu
101-
rust: 1.61.0 # MSRV (cross)
101+
rust: 1.65.0 # MSRV (cross)
102102
- target: aarch64-unknown-linux-gnu
103103
rust: stable
104104

105105
# PPC32
106106
- target: powerpc-unknown-linux-gnu
107-
rust: 1.61.0 # MSRV (cross)
107+
rust: 1.65.0 # MSRV (cross)
108108
- target: powerpc-unknown-linux-gnu
109109
rust: stable
110110

.github/workflows/p384.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -57,15 +57,15 @@ jobs:
5757
include:
5858
# 32-bit Linux
5959
- target: i686-unknown-linux-gnu
60-
rust: 1.61.0 # MSRV
60+
rust: 1.65.0 # MSRV
6161
deps: sudo apt update && sudo apt install gcc-multilib
6262
- target: i686-unknown-linux-gnu
6363
rust: stable
6464
deps: sudo apt update && sudo apt install gcc-multilib
6565

6666
# 64-bit Linux
6767
- target: x86_64-unknown-linux-gnu
68-
rust: 1.61.0 # MSRV
68+
rust: 1.65.0 # MSRV
6969
- target: x86_64-unknown-linux-gnu
7070
rust: stable
7171

@@ -89,19 +89,19 @@ jobs:
8989
include:
9090
# ARM32
9191
- target: armv7-unknown-linux-gnueabihf
92-
rust: 1.61.0 # MSRV (cross)
92+
rust: 1.65.0 # MSRV (cross)
9393
- target: armv7-unknown-linux-gnueabihf
9494
rust: stable
9595

9696
# ARM64
9797
- target: aarch64-unknown-linux-gnu
98-
rust: 1.61.0 # MSRV (cross)
98+
rust: 1.65.0 # MSRV (cross)
9999
- target: aarch64-unknown-linux-gnu
100100
rust: stable
101101

102102
# PPC32
103103
- target: powerpc-unknown-linux-gnu
104-
rust: 1.61.0 # MSRV (cross)
104+
rust: 1.65.0 # MSRV (cross)
105105
- target: powerpc-unknown-linux-gnu
106106
rust: stable
107107

.github/workflows/p521.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -47,15 +47,15 @@ jobs:
4747
include:
4848
# 32-bit Linux
4949
- target: i686-unknown-linux-gnu
50-
rust: 1.61.0 # MSRV
50+
rust: 1.65.0 # MSRV
5151
deps: sudo apt update && sudo apt install gcc-multilib
5252
- target: i686-unknown-linux-gnu
5353
rust: stable
5454
deps: sudo apt update && sudo apt install gcc-multilib
5555

5656
# 64-bit Linux
5757
- target: x86_64-unknown-linux-gnu
58-
rust: 1.61.0 # MSRV
58+
rust: 1.65.0 # MSRV
5959
- target: x86_64-unknown-linux-gnu
6060
rust: stable
6161

.github/workflows/primeorder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
rust:
27-
- 1.61.0 # MSRV
27+
- 1.65.0 # MSRV
2828
- stable
2929
target:
3030
- thumbv7em-none-eabi
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
rust:
47-
- 1.61.0 # MSRV
47+
- 1.65.0 # MSRV
4848
- stable
4949
steps:
5050
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)