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 sticker

Dependencies

(13 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 conllx^0.12.10.12.1up to date
 failure^0.10.1.8up to date
 finalfusion^0.10.10.18.0out of date
 itertools^0.80.12.1out of date
 ndarray^0.120.15.6out of date
 ndarray-tensorflow^0.20.3.0out of date
 ordered-float ⚠️^14.2.0out of date
 petgraph^0.40.6.4out of date
 protobuf ⚠️^23.4.0out of date
 serde^11.0.198up to date
 serde_derive^11.0.198up to date
 sticker-tf-proto^0.7.00.11.0out of date
 tensorflow^0.130.21.0out of date

Dev dependencies

(2 total, 2 outdated)

CrateRequiredLatestStatus
 approx^0.30.5.1out of date
 flate2>=1.0.0, <1.0.101.0.28out of date

Security Vulnerabilities

protobuf: Out of Memory in stream::read_raw_bytes_into()

RUSTSEC-2019-0003

Affected versions of this crate called Vec::reserve() on user-supplied input.

This allows an attacker to cause an Out of Memory condition while calling the vulnerable method on untrusted data.

ordered-float: ordered_float:NotNan may contain NaN after panic in assignment operators

RUSTSEC-2020-0082

After using an assignment operators such as NotNan::add_assign, NotNan::mul_assign, etc., it was possible for the resulting NotNan value to contain a NaN. This could cause undefined behavior in safe code, because the safe NotNan::cmp method contains internal unsafe code that assumes the value is never NaN. (It could also cause undefined behavior in third-party unsafe code that makes the same assumption, as well as logic errors in safe code.)

This was mitigated starting in version 0.4.0, by panicking if the assigned value is NaN. However, in affected versions from 0.4.0 onward, code that uses the NotNan value during unwinding, or that continues after catching the panic, could still observe the invalid value and trigger undefined behavior.

The flaw is fully corrected in versions 1.1.1 and 2.0.1, by ensuring that the assignment operators panic without modifying the operand, if the result would be NaN.