File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v0.10.68] - 2024-10-16
6
+
7
+ ### Fixed
8
+
9
+ * Fixed building on Rust 1.63.0 (our MSRV) with OpenSSL 3.2 or newer.
10
+
5
11
## [ v0.10.67] - 2024-10-15
6
12
7
13
### Added
925
931
926
932
Look at the [ release tags] for information about older releases.
927
933
928
- [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...master
934
+ [ Unreleased ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.68...master
935
+ [ v0.10.68 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...openssl-v0.10.68
929
936
[ v0.10.67 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67
930
937
[ v0.10.66 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66
931
938
[ v0.10.65 ] : https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...openssl-v0.10.65
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " openssl"
3
- version = " 0.10.67 "
3
+ version = " 0.10.68 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
license = " Apache-2.0"
6
6
description = " OpenSSL bindings"
Original file line number Diff line number Diff line change @@ -25,10 +25,11 @@ impl Drop for EvpKdfCtx {
25
25
cfg_if:: cfg_if! {
26
26
if #[ cfg( all( ossl320, not( osslconf = "OPENSSL_NO_ARGON2" ) ) ) ] {
27
27
use std:: cmp;
28
- use std:: ffi:: { c_char , c_void} ;
28
+ use std:: ffi:: c_void;
29
29
use std:: mem:: MaybeUninit ;
30
30
use std:: ptr;
31
31
use foreign_types:: ForeignTypeRef ;
32
+ use libc:: c_char;
32
33
use crate :: { cvt, cvt_p} ;
33
34
use crate :: lib_ctx:: LibCtxRef ;
34
35
use crate :: error:: ErrorStack ;
You can’t perform that action at this time.
0 commit comments