diff --git a/Cargo.lock b/Cargo.lock index 9b8e91c..507eb9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1148,8 +1148,9 @@ dependencies = [ [[package]] name = "rustls-platform-verifier" -version = "0.1.0" -source = "git+https://github.com/rustls/rustls-platform-verifier#ce16ccce58744b8973e3ecf5011a1fdf3bdef011" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92c57b5de012da34087f2fe711fa29770f9a7abdde660b01bac3c9dbdee91b84" dependencies = [ "core-foundation", "core-foundation-sys", @@ -1158,6 +1159,7 @@ dependencies = [ "once_cell", "rustls", "rustls-native-certs", + "rustls-platform-verifier-android", "rustls-webpki", "security-framework", "security-framework-sys", @@ -1165,6 +1167,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84e217e7fdc8466b5b35d30f8c0a30febd29173df4a3a0c2115d306b9c4117ad" + [[package]] name = "rustls-webpki" version = "0.101.6" diff --git a/Cargo.toml b/Cargo.toml index bf81302..e8996f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ rs-utilities = "0.4.2" # rs-utilities = { path = "../rs-utilities" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -rustls-platform-verifier = { git = "https://github.com/rustls/rustls-platform-verifier" } +rustls-platform-verifier = "0.1.1" byte-pool = { git = "https://github.com/neevek/byte-pool" } x509-parser = "0.15" lazy_static = "1.4"