From 04ccdf311f7705d3aee0ad8082f3541bad7d89fd Mon Sep 17 00:00:00 2001 From: Alex Dukhno Date: Sat, 12 Sep 2020 12:02:37 +0300 Subject: [PATCH] update to latest dependecies version --- Cargo.toml | 10 +++++----- src/imp/security_framework.rs | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7b2bd3e9..4e8b860d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,11 +11,11 @@ readme = "README.md" vendored = ["openssl/vendored"] [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] -security-framework = "0.4.1" -security-framework-sys = "0.4.1" -lazy_static = "1.0" +security-framework = "2.0.0" +security-framework-sys = "2.0.0" +lazy_static = "1.4.0" libc = "0.2" -tempfile = "3.0" +tempfile = "3.1.0" [target.'cfg(target_os = "windows")'.dependencies] schannel = "0.1.16" @@ -27,4 +27,4 @@ openssl-sys = "0.9.55" openssl-probe = "0.1" [dev-dependencies] -hex = "0.3" +hex = "0.4.2" diff --git a/src/imp/security_framework.rs b/src/imp/security_framework.rs index bcb84246..499c95a1 100644 --- a/src/imp/security_framework.rs +++ b/src/imp/security_framework.rs @@ -30,6 +30,7 @@ use self::security_framework::os::macos::keychain::{self, KeychainSettings, SecK use self::security_framework_sys::base::errSecParam; use {Protocol, TlsAcceptorBuilder, TlsConnectorBuilder}; +use self::security_framework::os::macos::import_export::Pkcs12ImportOptionsExt; static SET_AT_EXIT: Once = Once::new();