[INFO] fetching crate rx509 0.2.1...
[INFO] testing rx509-0.2.1 against beta-2025-09-21 for beta-1.91-3
[INFO] extracting crate rx509 0.2.1 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate rx509 0.2.1
[INFO] finished tweaking crates.io crate rx509 0.2.1
[INFO] tweaked toml for crates.io crate rx509 0.2.1 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate rx509 0.2.1 on toolchain beta-2025-09-21
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 8ce2f39c50287f9bec52f3d5a0853e31e40464e86ef52cf5d859b1a3013c3301
[INFO] running `Command { std: "docker" "start" "-a" "8ce2f39c50287f9bec52f3d5a0853e31e40464e86ef52cf5d859b1a3013c3301", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "8ce2f39c50287f9bec52f3d5a0853e31e40464e86ef52cf5d859b1a3013c3301", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "8ce2f39c50287f9bec52f3d5a0853e31e40464e86ef52cf5d859b1a3013c3301", kill_on_drop: false }`
[INFO] [stdout] 8ce2f39c50287f9bec52f3d5a0853e31e40464e86ef52cf5d859b1a3013c3301
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 58a9731278d09040b5244ac81e3441af6e9e51e049a2dd3cac43a5097985ddc2
[INFO] running `Command { std: "docker" "start" "-a" "58a9731278d09040b5244ac81e3441af6e9e51e049a2dd3cac43a5097985ddc2", kill_on_drop: false }`
[INFO] [stderr]    Compiling rx509 v0.2.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/der/types.rs:58:36
[INFO] [stdout]    |
[INFO] [stdout] 58 |     pub fn new(bytes: &'a [u8]) -> ASNInteger {
[INFO] [stdout]    |                        --          ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 58 |     pub fn new(bytes: &'a [u8]) -> ASNInteger<'a> {
[INFO] [stdout]    |                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:10:24
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_seq(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                        ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_seq(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:14:24
[INFO] [stdout]    |
[INFO] [stdout] 14 | fn parse_set(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                        ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 14 | fn parse_set(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:18:25
[INFO] [stdout]    |
[INFO] [stdout] 18 | fn parse_null(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                         ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                         |
[INFO] [stdout]    |                         the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 18 | fn parse_null(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:26:28
[INFO] [stdout]    |
[INFO] [stdout] 26 | fn parse_boolean(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                            ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                            |
[INFO] [stdout]    |                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 26 | fn parse_boolean(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:35:28
[INFO] [stdout]    |
[INFO] [stdout] 35 | fn parse_integer(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                            ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                            |
[INFO] [stdout]    |                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 35 | fn parse_integer(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:49:29
[INFO] [stdout]    |
[INFO] [stdout] 49 | fn parse_utc_time(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                             ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                             |
[INFO] [stdout]    |                             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 49 | fn parse_utc_time(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:53:37
[INFO] [stdout]    |
[INFO] [stdout] 53 | fn parse_generalized_time(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                                     ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                     |
[INFO] [stdout]    |                                     the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 53 | fn parse_generalized_time(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:94:25
[INFO] [stdout]    |
[INFO] [stdout] 94 | fn parse_time(contents: &[u8], time_type: TimeType) -> ASNResult {
[INFO] [stdout]    |                         ^^^^^                          ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                         |
[INFO] [stdout]    |                         the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 94 | fn parse_time(contents: &[u8], time_type: TimeType) -> ASNResult<'_> {
[INFO] [stdout]    |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:141:51
[INFO] [stdout]     |
[INFO] [stdout] 141 | fn parse_string<T: Fn(&str) -> ASNType>(contents: &[u8], create: T) -> ASNResult {
[INFO] [stdout]     |                                                   ^^^^^                ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                   |
[INFO] [stdout]     |                                                   the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 141 | fn parse_string<T: Fn(&str) -> ASNType>(contents: &[u8], create: T) -> ASNResult<'_> {
[INFO] [stdout]     |                                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:148:31
[INFO] [stdout]     |
[INFO] [stdout] 148 | fn parse_bit_string(contents: &[u8]) -> ASNResult {
[INFO] [stdout]     |                               ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                               |
[INFO] [stdout]     |                               the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 148 | fn parse_bit_string(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]     |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:164:38
[INFO] [stdout]     |
[INFO] [stdout] 164 | fn parse_object_identifier(contents: &[u8]) -> ASNResult {
[INFO] [stdout]     |                                      ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                      |
[INFO] [stdout]     |                                      the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 164 | fn parse_object_identifier(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]     |                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:338:43
[INFO] [stdout]     |
[INFO] [stdout] 338 |     pub(crate) fn new(input: &'a [u8]) -> Parser {
[INFO] [stdout]     |                               --          ^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                               |
[INFO] [stdout]     |                               the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 338 |     pub(crate) fn new(input: &'a [u8]) -> Parser<'a> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:344:68
[INFO] [stdout]     |
[INFO] [stdout] 344 |     pub(crate) fn unwrap_outer_sequence(input: &'a [u8]) -> Result<Parser, ASNErrorVariant> {
[INFO] [stdout]     |                                                 --                 ^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                 |
[INFO] [stdout]     |                                                 the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 344 |     pub(crate) fn unwrap_outer_sequence(input: &'a [u8]) -> Result<Parser<'a>, ASNErrorVariant> {
[INFO] [stdout]     |                                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/x509/mod.rs:19:46
[INFO] [stdout]    |
[INFO] [stdout] 19 |     pub fn new(bytes: &'a [u8], value: T) -> Constructed<T> {
[INFO] [stdout]    |                        --                    ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 19 |     pub fn new(bytes: &'a [u8], value: T) -> Constructed<'a, T> {
[INFO] [stdout]    |                                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:320:18
[INFO] [stdout]     |
[INFO] [stdout] 320 |     pub fn parse(&self) -> Result<RelativeDistinguishedName, ASNError> {
[INFO] [stdout]     |                  ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 320 |     pub fn parse(&self) -> Result<RelativeDistinguishedName<'_>, ASNError> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:351:21
[INFO] [stdout]     |
[INFO] [stdout] 351 |     fn parse(input: &[u8]) -> Result<SubjectPublicKeyInfo, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 351 |     fn parse(input: &[u8]) -> Result<SubjectPublicKeyInfo<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:369:25
[INFO] [stdout]     |
[INFO] [stdout] 369 |     pub fn parse(input: &[u8]) -> Result<Certificate, ASNError> {
[INFO] [stdout]     |                         ^^^^^            ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 369 |     pub fn parse(input: &[u8]) -> Result<Certificate<'_>, ASNError> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:396:21
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn parse(input: &[u8]) -> Result<AlgorithmIdentifier, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn parse(input: &[u8]) -> Result<AlgorithmIdentifier<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:442:21
[INFO] [stdout]     |
[INFO] [stdout] 442 |     fn parse(input: &[u8]) -> Result<Constructed<TBSCertificate>, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                     |                |           |
[INFO] [stdout]     |                     |                |           the same lifetime is hidden here
[INFO] [stdout]     |                     |                the same lifetime is hidden here
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 442 |     fn parse(input: &[u8]) -> Result<Constructed<'_, TBSCertificate<'_>>, ASNErrorVariant> {
[INFO] [stdout]     |                                                  +++               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/x509/ext.rs:45:45
[INFO] [stdout]    |
[INFO] [stdout] 45 |     pub fn parse(input: &'a [u8]) -> Result<Extension, ASNError> {
[INFO] [stdout]    |                          --                 ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                          |
[INFO] [stdout]    |                          the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 45 |     pub fn parse(input: &'a [u8]) -> Result<Extension<'a>, ASNError> {
[INFO] [stdout]    |                                                      ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/ext.rs:126:21
[INFO] [stdout]     |
[INFO] [stdout] 126 |     fn parse(input: &[u8]) -> Result<SubjectKeyIdentifier, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 126 |     fn parse(input: &[u8]) -> Result<SubjectKeyIdentifier<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/ext.rs:282:21
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn parse(input: &[u8]) -> Result<SubjectAlternativeName, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn parse(input: &[u8]) -> Result<SubjectAlternativeName<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.74s
[INFO] running `Command { std: "docker" "inspect" "58a9731278d09040b5244ac81e3441af6e9e51e049a2dd3cac43a5097985ddc2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "58a9731278d09040b5244ac81e3441af6e9e51e049a2dd3cac43a5097985ddc2", kill_on_drop: false }`
[INFO] [stdout] 58a9731278d09040b5244ac81e3441af6e9e51e049a2dd3cac43a5097985ddc2
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 15f2114633e8ca6365f779602ea75838d76a297ecc239838e780ee10bfb1b73d
[INFO] running `Command { std: "docker" "start" "-a" "15f2114633e8ca6365f779602ea75838d76a297ecc239838e780ee10bfb1b73d", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/der/types.rs:58:36
[INFO] [stdout]    |
[INFO] [stdout] 58 |     pub fn new(bytes: &'a [u8]) -> ASNInteger {
[INFO] [stdout]    |                        --          ^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 58 |     pub fn new(bytes: &'a [u8]) -> ASNInteger<'a> {
[INFO] [stdout]    |                                              ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:10:24
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_seq(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                        ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 10 | fn parse_seq(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:14:24
[INFO] [stdout]    |
[INFO] [stdout] 14 | fn parse_set(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                        ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 14 | fn parse_set(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:18:25
[INFO] [stdout]    |
[INFO] [stdout] 18 | fn parse_null(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                         ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                         |
[INFO] [stdout]    |                         the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 18 | fn parse_null(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:26:28
[INFO] [stdout]    |
[INFO] [stdout] 26 | fn parse_boolean(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                            ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                            |
[INFO] [stdout]    |                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 26 | fn parse_boolean(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:35:28
[INFO] [stdout]    |
[INFO] [stdout] 35 | fn parse_integer(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                            ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                            |
[INFO] [stdout]    |                            the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 35 | fn parse_integer(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:49:29
[INFO] [stdout]    |
[INFO] [stdout] 49 | fn parse_utc_time(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                             ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                             |
[INFO] [stdout]    |                             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 49 | fn parse_utc_time(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:53:37
[INFO] [stdout]    |
[INFO] [stdout] 53 | fn parse_generalized_time(contents: &[u8]) -> ASNResult {
[INFO] [stdout]    |                                     ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                                     |
[INFO] [stdout]    |                                     the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 53 | fn parse_generalized_time(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]    |                                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/der/parser.rs:94:25
[INFO] [stdout]    |
[INFO] [stdout] 94 | fn parse_time(contents: &[u8], time_type: TimeType) -> ASNResult {
[INFO] [stdout]    |                         ^^^^^                          ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                         |
[INFO] [stdout]    |                         the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 94 | fn parse_time(contents: &[u8], time_type: TimeType) -> ASNResult<'_> {
[INFO] [stdout]    |                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:141:51
[INFO] [stdout]     |
[INFO] [stdout] 141 | fn parse_string<T: Fn(&str) -> ASNType>(contents: &[u8], create: T) -> ASNResult {
[INFO] [stdout]     |                                                   ^^^^^                ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                   |
[INFO] [stdout]     |                                                   the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 141 | fn parse_string<T: Fn(&str) -> ASNType>(contents: &[u8], create: T) -> ASNResult<'_> {
[INFO] [stdout]     |                                                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:148:31
[INFO] [stdout]     |
[INFO] [stdout] 148 | fn parse_bit_string(contents: &[u8]) -> ASNResult {
[INFO] [stdout]     |                               ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                               |
[INFO] [stdout]     |                               the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 148 | fn parse_bit_string(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]     |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:164:38
[INFO] [stdout]     |
[INFO] [stdout] 164 | fn parse_object_identifier(contents: &[u8]) -> ASNResult {
[INFO] [stdout]     |                                      ^^^^^     ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                      |
[INFO] [stdout]     |                                      the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 164 | fn parse_object_identifier(contents: &[u8]) -> ASNResult<'_> {
[INFO] [stdout]     |                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:338:43
[INFO] [stdout]     |
[INFO] [stdout] 338 |     pub(crate) fn new(input: &'a [u8]) -> Parser {
[INFO] [stdout]     |                               --          ^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                               |
[INFO] [stdout]     |                               the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 338 |     pub(crate) fn new(input: &'a [u8]) -> Parser<'a> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/der/parser.rs:344:68
[INFO] [stdout]     |
[INFO] [stdout] 344 |     pub(crate) fn unwrap_outer_sequence(input: &'a [u8]) -> Result<Parser, ASNErrorVariant> {
[INFO] [stdout]     |                                                 --                 ^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                 |
[INFO] [stdout]     |                                                 the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 344 |     pub(crate) fn unwrap_outer_sequence(input: &'a [u8]) -> Result<Parser<'a>, ASNErrorVariant> {
[INFO] [stdout]     |                                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/x509/mod.rs:19:46
[INFO] [stdout]    |
[INFO] [stdout] 19 |     pub fn new(bytes: &'a [u8], value: T) -> Constructed<T> {
[INFO] [stdout]    |                        --                    ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 19 |     pub fn new(bytes: &'a [u8], value: T) -> Constructed<'a, T> {
[INFO] [stdout]    |                                                          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:320:18
[INFO] [stdout]     |
[INFO] [stdout] 320 |     pub fn parse(&self) -> Result<RelativeDistinguishedName, ASNError> {
[INFO] [stdout]     |                  ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 320 |     pub fn parse(&self) -> Result<RelativeDistinguishedName<'_>, ASNError> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:351:21
[INFO] [stdout]     |
[INFO] [stdout] 351 |     fn parse(input: &[u8]) -> Result<SubjectPublicKeyInfo, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 351 |     fn parse(input: &[u8]) -> Result<SubjectPublicKeyInfo<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:369:25
[INFO] [stdout]     |
[INFO] [stdout] 369 |     pub fn parse(input: &[u8]) -> Result<Certificate, ASNError> {
[INFO] [stdout]     |                         ^^^^^            ^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                         |
[INFO] [stdout]     |                         the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 369 |     pub fn parse(input: &[u8]) -> Result<Certificate<'_>, ASNError> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:396:21
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn parse(input: &[u8]) -> Result<AlgorithmIdentifier, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn parse(input: &[u8]) -> Result<AlgorithmIdentifier<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                         ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/mod.rs:442:21
[INFO] [stdout]     |
[INFO] [stdout] 442 |     fn parse(input: &[u8]) -> Result<Constructed<TBSCertificate>, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                     |                |           |
[INFO] [stdout]     |                     |                |           the same lifetime is hidden here
[INFO] [stdout]     |                     |                the same lifetime is hidden here
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 442 |     fn parse(input: &[u8]) -> Result<Constructed<'_, TBSCertificate<'_>>, ASNErrorVariant> {
[INFO] [stdout]     |                                                  +++               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/x509/ext.rs:45:45
[INFO] [stdout]    |
[INFO] [stdout] 45 |     pub fn parse(input: &'a [u8]) -> Result<Extension, ASNError> {
[INFO] [stdout]    |                          --                 ^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                          |
[INFO] [stdout]    |                          the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 45 |     pub fn parse(input: &'a [u8]) -> Result<Extension<'a>, ASNError> {
[INFO] [stdout]    |                                                      ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/ext.rs:126:21
[INFO] [stdout]     |
[INFO] [stdout] 126 |     fn parse(input: &[u8]) -> Result<SubjectKeyIdentifier, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 126 |     fn parse(input: &[u8]) -> Result<SubjectKeyIdentifier<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling rx509 v0.2.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/x509/ext.rs:282:21
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn parse(input: &[u8]) -> Result<SubjectAlternativeName, ASNErrorVariant> {
[INFO] [stdout]     |                     ^^^^^            ^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                     |
[INFO] [stdout]     |                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 282 |     fn parse(input: &[u8]) -> Result<SubjectAlternativeName<'_>, ASNErrorVariant> {
[INFO] [stdout]     |                                                            ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/der/../../../certs/512b-rsa-example-cert.der`: No such file or directory (os error 2)
[INFO] [stdout]   --> src/der/parse_all.rs:66:13
[INFO] [stdout]    |
[INFO] [stdout] 66 |             include_bytes!("../../../certs/512b-rsa-example-cert.der"),
[INFO] [stdout]    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/der/../../../certs/ed25519-example-cert.der`: No such file or directory (os error 2)
[INFO] [stdout]   --> src/der/parse_all.rs:76:13
[INFO] [stdout]    |
[INFO] [stdout] 76 |             include_bytes!("../../../certs/ed25519-example-cert.der"),
[INFO] [stdout]    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/x509/../../../certs/512b-rsa-example-cert.der`: No such file or directory (os error 2)
[INFO] [stdout]  --> src/x509/tests.rs:5:24
[INFO] [stdout]   |
[INFO] [stdout] 5 |     Certificate::parse(include_bytes!("../../../certs/512b-rsa-example-cert.der")).unwrap();
[INFO] [stdout]   |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/x509/../../../certs/cert_with_generalized_time.der`: No such file or directory (os error 2)
[INFO] [stdout]   --> src/x509/tests.rs:10:24
[INFO] [stdout]    |
[INFO] [stdout] 10 |       Certificate::parse(include_bytes!(
[INFO] [stdout]    |  ________________________^
[INFO] [stdout] 11 | |         "../../../certs/cert_with_generalized_time.der"
[INFO] [stdout] 12 | |     ))
[INFO] [stdout]    | |_____^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/x509/../../../certs/ed25519-example-cert.der`: No such file or directory (os error 2)
[INFO] [stdout]   --> src/x509/tests.rs:18:24
[INFO] [stdout]    |
[INFO] [stdout] 18 |     Certificate::parse(include_bytes!("../../../certs/ed25519-example-cert.der")).unwrap();
[INFO] [stdout]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: couldn't read `src/x509/../../../certs/google_root_cert.cer`: No such file or directory (os error 2)
[INFO] [stdout]   --> src/x509/tests.rs:23:24
[INFO] [stdout]    |
[INFO] [stdout] 23 |     Certificate::parse(include_bytes!("../../../certs/google_root_cert.cer")).unwrap();
[INFO] [stdout]    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `rx509` (lib test) due to 6 previous errors
[INFO] running `Command { std: "docker" "inspect" "15f2114633e8ca6365f779602ea75838d76a297ecc239838e780ee10bfb1b73d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "15f2114633e8ca6365f779602ea75838d76a297ecc239838e780ee10bfb1b73d", kill_on_drop: false }`
[INFO] [stdout] 15f2114633e8ca6365f779602ea75838d76a297ecc239838e780ee10bfb1b73d
