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 juniper

Dependencies

(30 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.471.0.104up to date
 arcstr^1.11.2.0up to date
 async-trait^0.1.390.1.91up to date
 auto_enums^0.80.8.9up to date
 bigdecimal^0.40.4.10up to date
 bson^3.03.1.0up to date
 chrono^0.4.300.4.45up to date
 chrono-tz^0.100.10.4up to date
 compact_str^0.90.10.0out of date
 derive_more^2.02.1.1up to date
 fnv^1.0.51.0.7up to date
 futures^0.3.220.3.33up to date
 graphql-parser^0.40.4.1up to date
 indexmap^2.02.14.0up to date
 itertools^0.140.15.0out of date
 jiff^0.20.2.34up to date
 juniper_codegen^0.17.00.17.0up to date
 num-bigint^0.4.20.5.1out of date
 ref-cast^1.01.0.26up to date
 regex^1.61.13.1up to date
 rust_decimal^1.201.42.1up to date
 ryu^1.01.0.23up to date
 serde^1.0.1221.0.229up to date
 serde_json^1.0.181.0.151up to date
 static_assertions^1.11.1.0up to date
 tap^1.0.11.0.1up to date
 time ⚠️^0.3.370.3.54maybe insecure
 url^2.02.5.8up to date
 uuid^1.31.24.0up to date
 void^1.0.21.0.2up to date

Dev dependencies

(9 total, 1 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 arcstr^1.11.2.0up to date
 bencher^0.1.20.1.5up to date
 chrono^0.4.300.4.45up to date
 compact_str^0.90.10.0out of date
 jiff^0.20.2.34up to date
 pretty_assertions^1.0.01.4.1up to date
 serde_json^1.0.181.0.151up to date
 serial_test^3.03.5.0up to date
 tokio ⚠️^1.01.53.1maybe insecure

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

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.