This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate async-nats

Dependencies

(26 total, 11 outdated, 1 insecure)

CrateRequiredLatestStatus
 base64^0.210.23.1out of date
 bytes^1.4.01.12.1up to date
 futures^0.3.280.3.34up to date
 http^0.2.91.5.0out of date
 memchr^2.42.8.3up to date
 nkeys^0.3.10.4.5out of date
 nuid^0.50.6.0out of date
 once_cell^1.18.01.21.4up to date
 rand^0.80.10.3out of date
 regex^1.9.11.13.1up to date
 ring^0.170.17.14up to date
 rustls^0.21.60.23.45out of date
 rustls-native-certs^0.60.8.4out of date
 rustls-pemfile^1.0.22.2.0out of date
 serde^1.0.1841.0.229up to date
 serde_json^1.0.1041.0.151up to date
 serde_nanos^0.1.30.1.4up to date
 serde_repr^0.1.160.1.21up to date
 thiserror^1.02.0.21out of date
 time^0.3.240.3.55up to date
 tokio^1.29.01.53.1up to date
 tokio-retry^0.30.3.2up to date
 tokio-rustls^0.240.26.5out of date
 tracing^0.10.1.44up to date
 url^22.5.8up to date
 rustls-webpki ⚠️^0.101.20.103.15insecure

Dev dependencies

(7 total, 4 outdated)

CrateRequiredLatestStatus
 criterion^0.50.8.2out of date
 futures^0.3.280.3.34up to date
 jsonschema^0.17.10.57.0out of date
 rand^0.80.10.3out of date
 reqwest^0.11.180.13.5out of date
 tokio^1.25.01.53.1up to date
 tracing-subscriber^0.30.3.23up to date

Security Vulnerabilities

rustls-webpki: Name constraints for URI names were incorrectly accepted

RUSTSEC-2026-0098

Name constraints for URI names were ignored and therefore accepted.

Note this library does not provide an API for asserting URI names, and URI name constraints are otherwise not implemented. URI name constraints are now rejected unconditionally.

Since name constraints are restrictions on otherwise properly-issued certificates, this bug is reachable only after signature verification and requires misissuance to exploit.

This vulnerability is identified as GHSA-965h-392x-2mh5. Thank you to @1seal for the report.

rustls-webpki: Name constraints were accepted for certificates asserting a wildcard name

RUSTSEC-2026-0099

Permitted subtree name constraints for DNS names were accepted for certificates asserting a wildcard name.

This was incorrect because, given a name constraint of accept.example.com, *.example.com could feasibly allow a name of reject.example.com which is outside the constraint. This is very similar to CVE-2025-61727.

Since name constraints are restrictions on otherwise properly-issued certificates, this bug is reachable only after signature verification and requires misissuance to exploit.

This vulnerability is identified as GHSA-xgp8-3hg3-c2mh. Thank you to @1seal for the report.

rustls-webpki: Reachable panic in certificate revocation list parsing

RUSTSEC-2026-0104

A panic was reachable when parsing certificate revocation lists via [BorrowedCertRevocationList::from_der] or [OwnedCertRevocationList::from_der]. This was the result of mishandling a syntactically valid empty BIT STRING appearing in the onlySomeReasons element of a IssuingDistributionPoint CRL extension.

This panic is reachable prior to a CRL's signature being verified.

Applications that do not use CRLs are not affected.

Thank you to @tynus3 for the report.