Skip to content

Commit 38d5088

Browse files
committed
sec1: upgrade to edition 2024; bump MSRV to 1.85
1 parent 6de6b2d commit 38d5088

File tree

9 files changed

+388
-25
lines changed

9 files changed

+388
-25
lines changed

.github/workflows/sec1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
rust:
30-
- 1.81.0 # MSRV
30+
- 1.85.0 # MSRV
3131
- stable
3232
target:
3333
- thumbv7em-none-eabi
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
rust:
55-
- 1.81.0 # MSRV
55+
- 1.85.0 # MSRV
5656
- stable
5757
steps:
5858
- uses: actions/checkout@v4

Cargo.lock

Lines changed: 16 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616
"pkcs5",
1717
"pkcs8",
1818
"pkcs12",
19-
"sec1",
19+
# "sec1",
2020
"serdect",
2121
"spki",
2222
"tai64",
@@ -27,6 +27,9 @@ members = [
2727
"x509-cert/test-support",
2828
"x509-ocsp"
2929
]
30+
exclude = [
31+
"sec1",
32+
]
3033

3134
[profile.dev]
3235
opt-level = 2
@@ -49,7 +52,7 @@ pkcs1 = { path = "./pkcs1" }
4952
pkcs5 = { path = "./pkcs5" }
5053
pkcs8 = { path = "./pkcs8" }
5154
pkcs12 = { path = "./pkcs12" }
52-
sec1 = { path = "./sec1" }
55+
# sec1 = { path = "./sec1" }
5356
serdect = { path = "./serdect" }
5457
spki = { path = "./spki" }
5558
tai64 = { path = "./tai64" }

0 commit comments

Comments
 (0)