This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate test_integration

Dependencies

(6 total, 1 outdated)

CrateRequiredLatestStatus
 tempfile^3.15.03.27.0up to date
 owo-colors^4.1.04.3.0up to date
 clap^4.5.264.6.1up to date
 postgres^0.19.90.19.13up to date
 serde^1.0.2171.0.228up to date
 toml^0.8.191.1.2+spec-1.1.0out of date

Crate test_codegen

Dependencies

(10 total, 1 possibly insecure)

CrateRequiredLatestStatus
 futures^0.3.310.3.32up to date
 postgres^0.19.90.19.13up to date
 tokio-postgres^0.7.120.7.17up to date
 postgres-types^0.2.80.2.13up to date
 serde^1.0.2171.0.228up to date
 serde_json^1.0.1351.0.150up to date
 time ⚠️^0.3.370.3.47maybe insecure
 uuid^1.11.11.23.3up to date
 eui48^1.1.01.1.0up to date
 rust_decimal^1.36.01.42.0up to date

Crate benches

Dependencies

(7 total, 1 outdated)

CrateRequiredLatestStatus
 criterion^0.5.10.8.2out of date
 tokio^1.43.01.52.3up to date
 futures^0.3.310.3.32up to date
 postgres^0.19.90.19.13up to date
 tokio-postgres^0.7.120.7.17up to date
 postgres-types^0.2.80.2.13up to date
 diesel^2.2.62.3.10up to date

Crate cornucopi

Dependencies

(8 total, 1 outdated)

CrateRequiredLatestStatus
 postgres^0.19.90.19.13up to date
 postgres-types^0.2.80.2.13up to date
 thiserror^2.0.112.0.18up to date
 miette^7.4.07.6.0up to date
 chumsky^0.9.30.13.0out of date
 clap^4.5.264.6.1up to date
 heck^0.5.00.5.0up to date
 indexmap^2.7.02.14.0up to date

Crate cornucopi_sync

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 postgres^0.19.90.19.13up to date

Crate cornucopi_async

Dependencies

(3 total, all up-to-date)

CrateRequiredLatestStatus
 async-trait^0.1.850.1.89up to date
 tokio-postgres^0.7.120.7.17up to date
 deadpool-postgres^0.14.10.14.1up to date

Crate codegen_template

Dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 unscanny^0.1.00.1.0up to date
 unicode-xid^0.2.60.2.6up to date

Crate cornucopi_client_core

Dependencies

(5 total, all up-to-date)

CrateRequiredLatestStatus
 postgres-protocol^0.6.70.6.11up to date
 postgres-types^0.2.80.2.13up to date
 postgres^0.19.90.19.13up to date
 serde_json^1.0.1351.0.150up to date
 serde^1.0.2171.0.228up to date

Security Vulnerabilities

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.