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 seq_io

Dependencies

(6 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 buf_redux^0.70.8.4out of date
 crossbeam ⚠️^0.40.8.4out of date
 memchr^2.02.7.2up to date
 scoped_threadpool^0.10.1.9up to date
 serde^1.01.0.201up to date
 serde_derive^1.01.0.201up to date

Dev dependencies

(6 total, 3 outdated)

CrateRequiredLatestStatus
 bio^0.221.6.0out of date
 criterion^0.20.5.1out of date
 fastq^0.60.6.0up to date
 lazy_static^1.11.4.0up to date
 matches^0.10.1.10up to date
 rand^0.50.8.5out of date

Security Vulnerabilities

crossbeam: MsQueue and SegQueue suffer from double-free

RUSTSEC-2018-0009

Even if an element is popped from a queue, crossbeam would run its destructor inside the epoch-based garbage collector. This is a source of double frees.

The flaw was corrected by wrapping elements inside queues in a ManuallyDrop.

Thanks to @c0gent for reporting the issue.