File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.9.90] - 2023-06-20
6
+
7
+ ### Fixed
8
+
9
+ * Fixed compilation with BoringSSL when building with the bindgen CLI.
10
+
5
11
## [ v0.9.89] - 2023-06-20
6
12
7
13
### Fixed
@@ -473,7 +479,8 @@ Fixed builds against OpenSSL built with `no-cast`.
473
479
* Added ` X509_verify ` and ` X509_REQ_verify ` .
474
480
* Added ` EVP_MD_type ` and ` EVP_GROUP_get_curve_name ` .
475
481
476
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.89..master
482
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.90..master
483
+ [ v0.9.90 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.89...openssl-sys-v0.9.90
477
484
[ v0.9.89 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.88...openssl-sys-v0.9.89
478
485
[ v0.9.88 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.87...openssl-sys-v0.9.88
479
486
[ v0.9.87 ] : https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.86...openssl-sys-v0.9.87
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl-sys"
3
- version = " 0.9.89 "
3
+ version = " 0.9.90 "
4
4
authors = [
5
5
" Alex Crichton <[email protected] >" ,
6
6
" Steven Fackler <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -167,7 +167,9 @@ pub fn run_boringssl(include_dirs: &[PathBuf]) {
167
167
bindgen_cmd
168
168
. arg ( "-o" )
169
169
. arg ( out_dir. join ( "bindgen.rs" ) )
170
- . arg ( "--rust-target=1.56" )
170
+ // Must be a valid version from
171
+ // https://docs.rs/bindgen/latest/bindgen/enum.RustTarget.html
172
+ . arg ( "--rust-target=1.47" )
171
173
. arg ( "--ctypes-prefix=::libc" )
172
174
. arg ( "--raw-line=use libc::*;" )
173
175
. arg ( "--no-derive-default" )
You can’t perform that action at this time.
0 commit comments