Skip to content

Commit 7d11237

Browse files
authored
Bump to OpenSSL 3.5.0 (#263)
* Bump to OpenSSL 3.5.0 * Try removing pkcs11-provider from tarball * Increase crate size limit
1 parent 4749908 commit 7d11237

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-src"
3-
version = "300.4.2+3.4.1"
3+
version = "300.5.0+3.5.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -23,7 +23,7 @@ exclude = [
2323
'openssl/python-ecdsa/*',
2424
'openssl/oqs-provider/*',
2525
'openssl/cloudflare-quiche/*',
26-
'openssl/tlslite-ng/*',
26+
'openssl/pkcs11-provider/*',
2727
# The current upload size limit for *.crate files is 10MB. Therefore, exclude
2828
# some unused documentation to meet this constraint.
2929
'openssl/doc/man{3,5,7}',

ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if [ "$1" = "x86_64-unknown-linux-gnu" ] ; then
2727
crate=`ls target/ci/package/*.crate`
2828
filesize=$(stat -c%s "$crate")
2929
echo "tarball is $filesize bytes"
30-
if (( filesize > 10000000 )); then
30+
if (( filesize > 15000000 )); then
3131
echo "file size too big"
3232
exit 1
3333
fi

openssl

Submodule openssl updated 1176 files

0 commit comments

Comments
 (0)