diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ade2e31..43f1d3c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -129,7 +129,7 @@ jobs: - run: | cargo install cargo-rdme cargo rdme install-rust-toolchain-for-intralinks - cargo rdme --check --intralinks-all-features + cargo rdme --intralinks-features validate,verify,verify-aws -c doc: name: Build documentation diff --git a/README.md b/README.md index 8134f3d..88b0980 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Github CI](https://github.com/rusticata/x509-parser/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/x509-parser/actions) [![Minimum rustc version](https://img.shields.io/badge/rustc-1.85+-lightgray.svg)](#rust-version-requirements) - + # X.509 Parser @@ -33,7 +33,7 @@ The [`parse_der`](https://docs.rs/asn1_rs/latest/asn1_rs/from_der/trait.DerParse object, which can be built from the input bytes. This helps tracking offsets (in case of error). For convenience, -the [`X509Certificate::from_der`] method (part of the [`FromDer`](https://docs.rs/asn1_rs/latest/asn1_rs/from_der/trait.FromDer.html) trait) +the [`X509Certificate::from_der`](https://docs.rs/x509-parser/latest/x509_parser/certificate/struct.X509Certificate.html#method.from_der) method (part of the [`FromDer`](https://docs.rs/asn1_rs/latest/asn1_rs/from_der/trait.FromDer.html) trait) does the same directly on the input bytes, but it can loose the precise error location. An alternative method is to use [`X509CertificateParser`](https://docs.rs/x509-parser/latest/x509_parser/certificate/struct.X509CertificateParser.html),