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 ia

Dependencies

(4 total, 2 outdated)

CrateRequiredLatestStatus
 libremexre^0.1.90.1.12up to date
 log^0.4.60.4.26up to date
 structopt^0.2.150.3.26out of date
 winit^0.18.00.30.9out of date

Crate ia-asset-tool

Dependencies

(6 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 libremexre^0.1.90.1.12up to date
 log^0.4.60.4.26up to date
 serde_cbor ⚠️^0.9.00.11.2out of date
 serde_sexpr^0.1.00.1.0up to date
 shaderc^0.5.00.9.1out of date
 structopt^0.2.150.3.26out of date

Crate ia-internal-debug-tool

Dependencies

(2 total, 1 outdated)

CrateRequiredLatestStatus
 libremexre^0.1.90.1.12up to date
 structopt^0.2.150.3.26out of date

Crate ia-model-viewer

Dependencies

(4 total, 2 outdated)

CrateRequiredLatestStatus
 libremexre^0.1.90.1.12up to date
 log^0.4.60.4.26up to date
 structopt^0.2.150.3.26out of date
 winit^0.18.00.30.9out of date

Crate assets

Dependencies

(8 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 bincode^1.1.32.0.1out of date
 derive_more^0.14.02.0.1out of date
 image ⚠️^0.21.10.25.5out of date
 libremexre^0.1.90.1.12up to date
 log^0.4.60.4.26up to date
 serde^1.0.901.0.219up to date
 vulkano^0.11.10.35.1out of date
 zstd^0.4.240.13.3out of date

Crate ecstasy

Dependencies

(8 total, 5 outdated)

CrateRequiredLatestStatus
 cgmath^0.17.00.18.0out of date
 derive_more^0.14.02.0.1out of date
 frunk^0.3.00.4.3out of date
 hashbrown^0.2.20.15.2out of date
 rayon^1.0.31.10.0up to date
 safety-guard^0.1.90.1.9up to date
 serde^1.0.901.0.219up to date
 typetag^0.1.30.2.20out of date

Dev dependencies

(3 total, 3 outdated)

CrateRequiredLatestStatus
 criterion^0.2.110.5.1out of date
 pretty_assertions^0.6.11.4.1out of date
 rand^0.6.50.9.0out of date

Crate ecstasy_proc_macros

Dependencies

(4 total, 4 outdated)

CrateRequiredLatestStatus
 proc-macro2^0.4.271.0.94out of date
 quote^0.6.121.0.40out of date
 syn^0.15.322.0.100out of date
 uuid^0.7.41.16.0out of date

Crate iqm

Dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 byteorder^1.3.11.5.0up to date
 log^0.4.60.4.26up to date

Dev dependencies

(4 total, 3 outdated)

CrateRequiredLatestStatus
 criterion^0.2.110.5.1out of date
 glob^0.3.00.3.2up to date
 pretty_assertions^0.6.11.4.1out of date
 rand^0.6.50.9.0out of date

Crate renderer

Dependencies

(8 total, 5 outdated)

CrateRequiredLatestStatus
 derivative^1.0.22.2.0out of date
 libremexre^0.1.90.1.12up to date
 log^0.4.60.4.26up to date
 serde^1.0.901.0.219up to date
 typetag^0.1.30.2.20out of date
 vulkano^0.11.10.35.1out of date
 vulkano-win^0.11.10.34.0out of date
 winit^0.18.00.30.9out of date

Security Vulnerabilities

image: Flaw in interface may drop uninitialized instance of arbitrary types

RUSTSEC-2019-0014

Affected versions of this crate would call Vec::set_len on an uninitialized vector with user-provided type parameter, in an interface of the HDR image format decoder. They would then also call other code that could panic before initializing all instances.

This could run Drop implementations on uninitialized types, equivalent to use-after-free, and allow an attacker arbitrary code execution.

Two different fixes were applied. It is possible to conserve the interface by ensuring proper initialization before calling Vec::set_len. Drop is no longer called in case of panic, though.

Starting from version 0.22, a breaking change to the interface requires callers to pre-allocate the output buffer and pass a mutable slice instead, avoiding all unsafe code.

serde_cbor: Flaw in CBOR deserializer allows stack overflow

RUSTSEC-2019-0025

Affected versions of this crate did not properly check if semantic tags were nested excessively during deserialization.

This allows an attacker to craft small (< 1 kB) CBOR documents that cause a stack overflow.

The flaw was corrected by limiting the allowed number of nested tags.