Skip to content

Commit

Permalink
Bump to 3.2.0 (#217)
Browse files Browse the repository at this point in the history
* Bump to 3.2.0

* Link with libcrypt32 on Windows

---------

Co-authored-by: WANG Rui <wangrui@loongson.cn>
  • Loading branch information
amousset and heiher authored Dec 8, 2023
1 parent 082bea6 commit 90dae38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openssl-src"
version = "300.1.6+3.1.4"
version = "300.2.0+3.2.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -21,6 +21,8 @@ exclude = [
'openssl/tlsfuzzer/*',
'openssl/python-ecdsa/*',
'openssl/oqs-provider/*',
'openssl/cloudflare-quiche/*',
'openssl/tlslite-ng/*',
# The current upload size limit for *.crate files is 10MB. Therefore, exclude
# some unused documentation to meet this constraint.
'openssl/doc/man{3,5,7}',
Expand Down
2 changes: 1 addition & 1 deletion openssl
Submodule openssl updated 21757 files
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,9 @@ impl Artifacts {
}
println!("cargo:include={}", self.include_dir.display());
println!("cargo:lib={}", self.lib_dir.display());
if self.target.contains("msvc") {
if self.target.contains("windows") {
println!("cargo:rustc-link-lib=user32");
println!("cargo:rustc-link-lib=crypt32");
} else if self.target == "wasm32-wasi" {
println!("cargo:rustc-link-lib=wasi-emulated-signal");
println!("cargo:rustc-link-lib=wasi-emulated-process-clocks");
Expand Down

0 comments on commit 90dae38

Please sign in to comment.