Skip to content

Commit ea204f5

Browse files
committed
Raise MSRV to 1.63
1 parent ff1ce6d commit ea204f5

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# Remember to also update `--rust-target` in `openssl-sys/build/run_bindgen.rs`
6363
- uses: sfackler/actions/rustup@master
6464
with:
65-
version: 1.56.0
65+
version: 1.63.0
6666
- run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
6767
id: rust-version
6868
- uses: actions/cache@v4
@@ -72,8 +72,6 @@ jobs:
7272
restore-keys: |
7373
index-${{ runner.os }}-
7474
- run: cargo generate-lockfile
75-
- run: |
76-
cargo update -p cc --precise 1.0.94
7775
- uses: actions/cache@v4
7876
with:
7977
path: ~/.cargo/registry/cache

openssl-errors/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ description = "Custom error library support for the openssl crate."
88
repository = "https://github.com/sfackler/rust-openssl"
99
readme = "README.md"
1010
categories = ["api-bindings"]
11+
rust-version = "1.63.0"
1112

1213
[dependencies]
1314
cfg-if = "1.0"

openssl-macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Internal macros used by the openssl crate."
77
repository = "https://github.com/sfackler/rust-openssl"
8+
rust-version = "1.63.0"
89

910
[lib]
1011
proc-macro = true

openssl-sys/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ categories = ["cryptography", "external-ffi-bindings"]
1313
links = "openssl"
1414
build = "build/main.rs"
1515
edition = "2018"
16+
rust-version = "1.63.0"
1617

1718
[features]
1819
vendored = ['openssl-src']

openssl/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ readme = "README.md"
99
keywords = ["crypto", "tls", "ssl", "dtls"]
1010
categories = ["cryptography", "api-bindings"]
1111
edition = "2018"
12+
rust-version = "1.63.0"
1213

1314
# these are deprecated and don't do anything anymore
1415
[features]

0 commit comments

Comments
 (0)