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 blackbox-log

Dependencies

(7 total, 2 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bitvec^1.0.01.0.1up to date
 hashbrown ⚠️>=0.12.0, <0.16.00.16.1out of date
 memchr^2.4.02.8.0up to date
 serde^1.0.961.0.228up to date
 time ⚠️^0.3.30.3.47maybe insecure
 tracing^0.1.160.1.44up to date
 uom>=0.34.0, <0.36.10.38.0out of date

Dev dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 criterion^0.5.10.8.2out of date
 insta^1.42.21.46.3up to date
 test-case^3.3.13.3.1up to date

Crate codegen

Dependencies

(7 total, all up-to-date)

CrateRequiredLatestStatus
 glob^0.3.10.3.3up to date
 heck^0.5.00.5.0up to date
 proc-macro2^1.0.811.0.106up to date
 quote^1.0.361.0.44up to date
 serde^1.0.2001.0.228up to date
 serde_yaml^0.9.340.9.34+deprecatedup to date
 syn^2.0.602.0.117up to date

Crate fuzz

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 libfuzzer-sys^0.4.90.4.12up to date

Security Vulnerabilities

hashbrown: Borsh serialization of HashMap is non-canonical

RUSTSEC-2024-0402

The borsh serialization of the HashMap did not follow the borsh specification. It potentially produced non-canonical encodings dependent on insertion order. It also did not perform canonicty checks on decoding.

This can result in consensus splits and cause equivalent objects to be considered distinct.

This was patched in 0.15.1.

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.