Skip to content

Commit 90dae38

Browse files
amoussetheiher
andauthored
Bump to 3.2.0 (#217)
* Bump to 3.2.0 * Link with libcrypt32 on Windows --------- Co-authored-by: WANG Rui <[email protected]>
1 parent 082bea6 commit 90dae38

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-src"
3-
version = "300.1.6+3.1.4"
3+
version = "300.2.0+3.2.0"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -21,6 +21,8 @@ exclude = [
2121
'openssl/tlsfuzzer/*',
2222
'openssl/python-ecdsa/*',
2323
'openssl/oqs-provider/*',
24+
'openssl/cloudflare-quiche/*',
25+
'openssl/tlslite-ng/*',
2426
# The current upload size limit for *.crate files is 10MB. Therefore, exclude
2527
# some unused documentation to meet this constraint.
2628
'openssl/doc/man{3,5,7}',

openssl

Submodule openssl updated 21757 files

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,9 @@ impl Artifacts {
686686
}
687687
println!("cargo:include={}", self.include_dir.display());
688688
println!("cargo:lib={}", self.lib_dir.display());
689-
if self.target.contains("msvc") {
689+
if self.target.contains("windows") {
690690
println!("cargo:rustc-link-lib=user32");
691+
println!("cargo:rustc-link-lib=crypt32");
691692
} else if self.target == "wasm32-wasi" {
692693
println!("cargo:rustc-link-lib=wasi-emulated-signal");
693694
println!("cargo:rustc-link-lib=wasi-emulated-process-clocks");

0 commit comments

Comments
 (0)