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 gcp-bigquery-client

Dependencies

(23 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-stream^0.3.60.3.6up to date
 async-trait^0.1.890.1.89up to date
 cloud-storage^0.11.10.11.1up to date
 deadpool^0.12.30.13.0out of date
 dyn-clone^1.0.201.0.20up to date
 flate2^1.1.21.1.9up to date
 futures^0.3.310.3.32up to date
 hyper-util^0.1.160.1.20up to date
 log^0.4.280.4.29up to date
 pin-project^1.1.101.1.11up to date
 prost^0.14.10.14.3up to date
 prost-types^0.14.10.14.3up to date
 reqwest^0.12.230.13.3out of date
 serde^1.0.2191.0.228up to date
 serde_json^1.0.1431.0.149up to date
 thiserror^2.0.162.0.18up to date
 time ⚠️^0.3.430.3.47maybe insecure
 tokio^1.47.11.52.1up to date
 tokio-stream^0.1.170.1.18up to date
 tonic^0.14.10.14.5up to date
 tonic-prost^0.14.10.14.5up to date
 url^2.5.72.5.8up to date
 yup-oauth2^12.1.212.1.2up to date

Dev dependencies

(5 total, 2 outdated)

CrateRequiredLatestStatus
 fake^3.1.05.1.0out of date
 rand^0.9.20.10.1out of date
 tempfile^3.21.03.27.0up to date
 tokio-test^0.4.40.4.5up to date
 wiremock^0.6.50.6.5up 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.