File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " openssl-probe"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44authors = [" Alex Crichton <alex@alexcrichton.com>" ]
55license = " MIT/Apache-2.0"
66repository = " https://github.com/alexcrichton/openssl-probe"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ First, add this to your `Cargo.toml`:
1111
1212``` toml
1313[dependencies ]
14- openssl-probe = " 0.1.1 "
14+ openssl-probe = " 0.1.2 "
1515```
1616
1717Then add this to your crate:
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ pub fn find_certs_dirs() -> Vec<PathBuf> {
2222 "/usr/lib/ssl" ,
2323 "/usr/ssl" ,
2424 "/etc/openssl" ,
25+ "/etc/pki/ca-trust/extracted/pem" ,
2526 "/etc/pki/tls" ,
2627 "/etc/ssl" ,
2728 "/data/data/com.termux/files/usr/etc/tls" ,
@@ -66,6 +67,7 @@ pub fn probe() -> ProbeResult {
6667 "certs/ca-root-nss.crt" ,
6768 "certs/ca-bundle.crt" ,
6869 "CARootCertificates.pem" ,
70+ "tls-ca-bundle.pem" ,
6971 ] . iter ( ) {
7072 try( & mut result. cert_file , certs_dir. join ( cert) ) ;
7173 }
You can’t perform that action at this time.
0 commit comments