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 citybound

Dependencies

(4 total, 2 outdated)

CrateRequiredLatestStatus
 rouille^2.1.03.6.2out of date
 clap^2.32.04.5.4out of date
 backtrace^0.30.3.71up to date
 ctrlc^3.1.33.4.4up to date

Crate cb_simulation

Dependencies

(14 total, 6 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ordered-float ⚠️^1.0.14.2.0out of date
 itertools^0.7.80.12.1out of date
 rand^0.50.8.5out of date
 fnv^1.0.61.0.7up to date
 roaring^0.5.20.10.3out of date
 serde^1.01.0.198up to date
 serde_derive^1.01.0.198up to date
 uuid^0.7.11.8.0out of date
 compact^0.2.160.2.16up to date
 compact_macros^0.1.00.1.0up to date
 kay^0.5.10.5.1up to date
 descartes^0.1.200.1.20up to date
 michelangelo^0.2.50.2.5up to date
 arrayvec^0.4.100.7.4out of date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 kay_codegen^0.3.100.3.10up to date

Crate cb_planning

Dependencies

(7 total, 1 outdated)

CrateRequiredLatestStatus
 serde^1.01.0.198up to date
 serde_derive^1.01.0.198up to date
 uuid^0.7.11.8.0out of date
 compact^0.2.130.2.16up to date
 compact_macros^0.1.00.1.0up to date
 kay^0.5.10.5.1up to date
 descartes^0.1.200.1.20up to date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 kay_codegen^0.3.100.3.10up to date

Crate cb_util

Dependencies

(11 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 rand^0.50.8.5out of date
 fnv^1.0.61.0.7up to date
 serde^1.01.0.198up to date
 serde_derive^1.01.0.198up to date
 uuid^0.7.11.8.0out of date
 compact^0.2.130.2.16up to date
 compact_macros^0.1.00.1.0up to date
 arrayvec^0.4.100.7.4out of date
 kay^0.5.10.5.1up to date
 notify^4.0.126.1.1out of date
 serde_yaml ⚠️^0.80.9.34+deprecatedout of date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 kay_codegen^0.3.100.3.10up to date

Crate cb_time

Dependencies

(6 total, 1 outdated)

CrateRequiredLatestStatus
 serde^1.01.0.198up to date
 serde_derive^1.01.0.198up to date
 uuid^0.7.11.8.0out of date
 compact^0.2.130.2.16up to date
 compact_macros^0.1.00.1.0up to date
 kay^0.5.10.5.1up to date

Build dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 kay_codegen^0.3.100.3.10up to date

Security Vulnerabilities

serde_yaml: Uncontrolled recursion leads to abort in deserialization

RUSTSEC-2018-0005

Affected versions of this crate did not properly check for recursion while deserializing aliases.

This allows an attacker to make a YAML file with an alias referring to itself causing an abort.

The flaw was corrected by checking the recursion depth.

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.