create basic example to ease testing on new systems

This commit is contained in:
Joshua M. Clulow
2022-01-09 18:42:14 -08:00
parent f27dca77e5
commit 988d6e3605
+6
View File
@@ -0,0 +1,6 @@
fn main() {
let r = openssl_probe::probe();
println!("cert_dir: {:?}", r.cert_dir);
println!("cert_file: {:?}", r.cert_file);
}