deno_native_certs 0.3.1

deno-native-certs loads native certificate store into rustls
Documentation
1
2
3
4
5
6
7
8
use deno_native_certs::load_native_certs;

fn main() {
  let certs = load_native_certs().unwrap();
  for cert in certs {
    println!("{:?}", cert.0);
  }
}