sequoia-cert-store 0.7.3

A certificate database interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    // We use custom cfgs instead of Cargo features enabled by default
    // because adding new default features would be a breaking change.
    // This should be replaced with proper features in the next major
    // version.
    println!("cargo::rustc-check-cfg=cfg(certd)");
    println!("cargo::rustc-check-cfg=cfg(pep)");
    if !std::env::var_os("CARGO_CFG_TARGET_FAMILY")
        .is_some_and(|f| f == "wasm")
    {
        println!("cargo::rustc-cfg=certd");
        println!("cargo::rustc-cfg=pep");
    }
}