-
Hi! Your README makes the following claim: """ So, this should include all dependencies used (as opposed to only those statically linked, which would be a subset of those used). An example would be a procedural macro, which only generates code, but is not linked into an executable. My question is, does this actually include this information, and if so, how does it gather the information? Also, given the answer to the first question, how probable is it that a particular package that was used would be omitted from the cargo-auditable generated information in the executable? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
It uses cargo metadata has an issue where it sometimes returns more dependencies than actually get compiled in when you use the v2 resolver (I believe it is hard coded to the v1 resolver), but afaik it will never omit any dependencies.
|
Beta Was this translation helpful? Give feedback.
It uses
cargo metadata
:cargo-auditable/cargo-auditable/src/collect_audit_data.rs
Line 18 in da85607
cargo metadata
has an issue where it sometimes returns more dependencies than actually get compiled in when you use the v2 resolver (I believe it is hard coded to the v1 resolver), but afaik it will never omit any dependencies.